D7myChuangpin/报关管理(BaoGuan.dll)/BaoGuan.dpr

52 lines
1.4 KiB
ObjectPascal
Raw Permalink Normal View History

2024-07-23 20:18:14 +08:00
library BaoGuan;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
U_GetDllForm in 'U_GetDllForm.pas',
U_DataLink in 'U_DataLink.pas' {DataLink_DDMD: TDataModule},
U_FjList in 'U_FjList.pas' {frmFjList},
U_ZDYHelp in 'U_ZDYHelp.pas' {frmZDYHelp},
U_FjList_RZ in 'U_FjList_RZ.pas' {frmFjList_RZ},
U_CompressionFun in '..\..\..\ThreeFun\Fun\U_CompressionFun.pas',
U_BaoGuanInPut in 'U_BaoGuanInPut.pas' {frmBaoGuanInPut},
U_BaoGuanXSList in 'U_BaoGuanXSList.pas' {frmBaoGuanXSList},
U_RTFun in '..\..\..\ThreeFun\Fun\U_RTFun.pas';
// U_SelfForm in '..\..\SelfForm\U_SelfForm.pas',
// U_SelExportField in '..\..\SelfForm\U_SelExportField.pas' {frmSelExportField},
// U_SelPrintField in '..\..\SelfForm\U_SelPrintField.pas' {frmSelPrintField},
// U_SelPrintFieldNew in '..\..\SelfForm\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
//U_FormPas in '..\CommonPas\formPas\U_FormPas.pas',
//U_CxGridSet in '..\CommonPas\cxgridPas\U_CxGridSet.pas';
//U_RSFormPas in '..\CommonPas\RSCommon\U_RSFormPas.pas';
{$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.