rsapihead.pas

来自「用DLL中封装MDI,在DLL文件中封装MDI」· PAS 代码 · 共 29 行

PAS
29
字号
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 + =
减小字号Ctrl + -
显示快捷键?