📄 bcutilities.pas
字号:
{ Unit: BcUtils
===========================================================================
Copyright (C) 2001 Bluecave Software. All Rights Reserved.
http://www.bluecave.net/
Copyright (C) 2001 Jouni Airaksinen. All Rights Reserved.
http://Mintus.Codefield.com/ -- Mintus@Codefield.com
Parts copied from,
Borland Delphi Visual Component Library
Copyright (c) Borland Corporation
=========================================================================== }
{$I DFS.inc}
{$I BcDirectives.inc}
unit BcUtilities;
interface
type
TColorQuad = record
Red, Green, Blue, Alpha: Byte;
end;
procedure Error(ResStr: PResStringRec); { source VCL Menus.pas }
implementation
uses
Menus;
procedure Error(ResStr: PResStringRec);
function ReturnAddr: Pointer;
asm
mov eax, [esp+8]
end;
begin
raise EMenuError.CreateRes(ResStr) at ReturnAddr;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -