59 lines
1.9 KiB
ObjectPascal
59 lines
1.9 KiB
ObjectPascal
library GYJWLCK;
|
|
|
|
uses
|
|
SysUtils,
|
|
classes,
|
|
forms,
|
|
WinTypes,
|
|
WinProcs,
|
|
MIDASLIB,
|
|
U_GetDllForm in 'U_GetDllForm.pas',
|
|
U_RTFun in '..\..\..\RTFunAndForm\Fun\U_RTFun.pas',
|
|
U_DataLink in 'U_DataLink.pas' {DataLink_GYJWL: TDataModule},
|
|
U_iniParam in 'U_iniParam.pas',
|
|
U_ZDYHelp in 'U_ZDYHelp.pas' {frmZDYHelp},
|
|
U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS},
|
|
U_ShaKCHZListJWL in 'U_ShaKCHZListJWL.pas' {frmShaKCHZListJWL},
|
|
U_ShaKCSelList in 'U_ShaKCSelList.pas' {frmShaKCSelList},
|
|
U_ShaOutPut in 'U_ShaOutPut.pas' {frmShaOutPut},
|
|
U_ShaRKInPut in 'U_ShaRKInPut.pas' {frmShaRKInPut},
|
|
U_JWLcktjlist in 'U_JWLcktjlist.pas' {frmJWLcktjlist},
|
|
U_ZZJWLOutHZList in 'U_ZZJWLOutHZList.pas' {frmZZJWLOutHZList},
|
|
U_ZZJWLRKList in 'U_ZZJWLRKList.pas' {frmZZJWLRKList},
|
|
U_Fun in '..\..\..\ThreeFun\Fun\U_Fun.pas',
|
|
U_SelExportField in '..\..\..\ThreeFun\Fun\U_SelExportField.pas' {frmSelExportField},
|
|
U_ColumnSet in '..\..\..\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet},
|
|
U_ColumnBandSet in '..\..\..\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet},
|
|
U_SelPrintField in '..\..\..\ThreeFun\Form\U_SelPrintField.pas' {frmSelPrintField},
|
|
U_SelPrintFieldNew in '..\..\..\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
|
|
U_ZDYHelpSel in '..\..\..\ThreeFun\Form\U_ZDYHelpSel.pas' {frmZDYHelpSel},
|
|
U_Fun10 in '..\..\..\ThreeFun\Fun\U_Fun10.pas',
|
|
U_SysLogHelp in '..\..\..\ThreeFun\Form\U_SysLogHelp.pas' {frmSysLogHelp};
|
|
|
|
{$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.
|
|
|