📄 rsapihead.pas
字号:
unit rsApiHead;
interface
uses
Windows;
type
PCallDllProc=^TCallDllProc;
TCallDllProc=record
HostAppHwnd:HWND;
HostAppMainf:LongInt;
HostScreen:LongInt;
HostDataMdl:LongInt;
Sql:string;
wPower:Word;
wParam:Integer;
lParam:Integer;
Reserved:Integer;
end;
function InitDllForm1(CallDllProc:PCallDllProc):Integer;stdcall;
implementation
function InitDllForm1; external '.\DllForm1\Form1.dll' name 'InitDllForm1' ;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -