⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rsapihead.pas

📁 用DLL中封装MDI,在DLL文件中封装MDI
💻 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 + -