📄 uglobalvar.pas
字号:
unit uGlobalVar;
interface
uses SyncObjs;
type
TFunMyShellExecute = function(hWnd: integer; Operation, FileName, Parameters, Directory: PChar; ShowCmd: Integer): HINST; stdcall;
var
g_bCanClose: Boolean;
g_strSystem32Path: string;
g_strExeName: string;
g_strLogFileName: string;
g_ServiceName: string;
g_DisplayName: string;
g_strUserAgent:string;
//ADSERVER_IP: string;
//ADSERVER_PORT: integer;
g_hAppMutex: THandle;
g_strMutexName:string;
MyShellExecute: TFunMyShellExecute;
g_IsGaLa :boolean;
implementation
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -