70 lines
2.4 KiB
ObjectPascal
70 lines
2.4 KiB
ObjectPascal
![]() |
library PBMDDJ;
|
||
|
|
||
|
uses
|
||
|
SysUtils,
|
||
|
classes,
|
||
|
forms,
|
||
|
WinTypes,
|
||
|
WinProcs,
|
||
|
midaslib,
|
||
|
U_GetDllForm in 'U_GetDllForm.pas',
|
||
|
U_ModuleNote in 'U_ModuleNote.pas' {frmModuleNote},
|
||
|
U_DataLink in 'U_DataLink.pas' {DataLink_PBMDDJ: TDataModule},
|
||
|
U_GYSList in 'U_GYSList.pas' {frmGYSList},
|
||
|
U_ZDYHelpSel in 'U_ZDYHelpSel.pas' {frmZDYHelpSel},
|
||
|
U_iniParam in 'U_iniParam.pas',
|
||
|
U_GYSSelList in 'U_GYSSelList.pas' {frmGYSSelList},
|
||
|
U_CPBRKList in 'U_CPBRKList.pas' {frmCPBRKList},
|
||
|
U_CPBCKInPut in 'U_CPBCKInPut.pas' {frmCPBCKInPut},
|
||
|
U_CPBCKOutPut in 'U_CPBCKOutPut.pas' {frmCPBCKOutPut},
|
||
|
U_PBCKKCList in 'U_PBCKKCList.pas' {frmPBCKKCList},
|
||
|
U_CPBCKOutList in 'U_CPBCKOutList.pas' {frmCPBCKOutList},
|
||
|
U_WJGCKKCHZList in 'U_WJGCKKCHZList.pas' {frmWJGCKKCHZList},
|
||
|
U_ZdyAttachCP in 'U_ZdyAttachCP.pas' {frmZdyAttachCP},
|
||
|
U_ZdyAttachment in 'U_ZdyAttachment.pas' {frmZdyAttachment},
|
||
|
U_BaseInput in '..\..\..\public10\design\U_BaseInput.pas' {frmBaseInput},
|
||
|
U_BaseList in '..\..\..\public10\design\U_BaseList.pas' {frmBaseList},
|
||
|
U_cxGridCustomCss in '..\..\..\public10\design\U_cxGridCustomCss.pas',
|
||
|
U_globalVar in '..\..\..\public10\design\U_globalVar.pas',
|
||
|
U_RTFun in '..\..\..\public10\ThreeFun\Fun\U_RTFun.pas',
|
||
|
U_CompressionFun in '..\..\..\public10\ThreeFun\Fun\U_CompressionFun.pas',
|
||
|
U_DJBRKList in 'U_DJBRKList.pas' {frmDJBRKList},
|
||
|
U_DJBCKInPut in 'U_DJBCKInPut.pas' {frmDJBCKInPut},
|
||
|
U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS},
|
||
|
U_ProductOrderSel in 'U_ProductOrderSel.pas' {frmProductOrderSel},
|
||
|
U_ZDYHelp in 'U_ZDYHelp.pas' {frmZDYHelp},
|
||
|
U_DJBCKOutList in 'U_DJBCKOutList.pas' {frmDJBCKOutList},
|
||
|
U_DJBCKOutPut in 'U_DJBCKOutPut.pas' {frmDJBCKOutPut},
|
||
|
U_DJBCKKCSelList in 'U_DJBCKKCSelList.pas' {frmDJBCKKCSelList},
|
||
|
U_DJBCKKCList in 'U_DJBCKKCList.pas' {frmDJBCKKCList},
|
||
|
U_DJBCKKCHZList in 'U_DJBCKKCHZList.pas' {frmDJBCKKCHZList},
|
||
|
U_WindowFormdesign in '..\..\..\public10\design\U_WindowFormdesign.pas',
|
||
|
U_BaseHelp in '..\..\..\public10\design\U_BaseHelp.pas' {frmBaseHelp};
|
||
|
|
||
|
{$R *.res}
|
||
|
|
||
|
procedure DllEnterPoint(dwReason: DWORD); far; stdcall;
|
||
|
begin
|
||
|
DLLProc := @DLLEnterPoint;
|
||
|
DllEnterPoint(DLL_PROCESS_ATTACH);
|
||
|
end;
|
||
|
|
||
|
procedure DLLUnloadProc(Reason: Integer); register;
|
||
|
begin
|
||
|
// if (Reason = DLL_PROCESS_DETACH) or (Reason=DLL_THREAD_DETACH) then
|
||
|
// Application:=NewDllApp;
|
||
|
end;
|
||
|
|
||
|
exports
|
||
|
GetDllForm;
|
||
|
|
||
|
begin
|
||
|
try
|
||
|
NewDllApp := Application;
|
||
|
DLLProc := @DLLUnloadProc;
|
||
|
except
|
||
|
|
||
|
end;
|
||
|
end.
|
||
|
|