📄 cngpsmgwsim.dpr
字号:
program CngpSmgwSim;
uses
Windows,
Forms,
TestMain in 'Forms\TestMain.pas' {MainForm},
SMGWSimThread in 'Threads\SMGWSimThread.pas',
General in 'Common\General.pas',
MD5Implementation in 'Common\Crypto\MD5Implementation.pas',
CNGPConsts in 'CngpCommon\CNGPConsts.pas',
CNGPStructs in 'CngpCommon\CNGPStructs.pas';
{$R *.res}
var
mtx: THandle;
begin
mtx := CreateMutex(nil, True, 'CNGP SMGW Simulator mutex');
if GetLastError <> 0 then begin
ReleaseMutex(mtx);
Exit;
end;
Application.Initialize;
Application.CreateForm(TMainForm, MainForm);
Application.Run;
ReleaseMutex(mtx);
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -