2025-07-22 15:51:47 +08:00
|
|
|
|
library PBMDDJ;
|
|
|
|
|
//<2F>Ѹ<EFBFBD>
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
SysUtils,
|
|
|
|
|
classes,
|
|
|
|
|
forms,
|
|
|
|
|
WinTypes,
|
|
|
|
|
WinProcs,
|
|
|
|
|
MIDASLIB,
|
|
|
|
|
U_GetDllForm in 'U_GetDllForm.pas',
|
|
|
|
|
U_RTFun in '..\..\..\RTFunAndForm\Fun\U_RTFun.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_ZDYHelp in 'U_ZDYHelp.pas' {frmZDYHelp},
|
|
|
|
|
U_GYSSelList in 'U_GYSSelList.pas' {frmGYSSelList},
|
|
|
|
|
U_CPBRKList in 'U_CPBRKList.pas' {frmCPBRKList},
|
|
|
|
|
U_CPBCKInPut in 'U_CPBCKInPut.pas' {frmCPBCKInPut},
|
|
|
|
|
U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS},
|
|
|
|
|
U_ProductOrderListSel in 'U_ProductOrderListSel.pas' {frmProductOrderListSel},
|
|
|
|
|
U_CPBCKOutPut in 'U_CPBCKOutPut.pas' {frmCPBCKOutPut},
|
|
|
|
|
U_PBTPTJLIST in 'U_PBTPTJLIST.pas' {frmPBTPTJList},
|
|
|
|
|
U_CPBCKOutList in 'U_CPBCKOutList.pas' {frmCPBCKOutList},
|
|
|
|
|
U_WJGCKKCHZList in 'U_WJGCKKCHZList.pas' {frmWJGCKKCHZList},
|
|
|
|
|
U_DJBCKKCHZList in 'U_DJBCKKCHZList.pas' {frmDJBCKKCHZList},
|
|
|
|
|
U_ZdyAttachCP in 'U_ZdyAttachCP.pas' {frmZdyAttachCP},
|
|
|
|
|
U_ZdyAttachment in 'U_ZdyAttachment.pas' {frmZdyAttachment},
|
2025-07-22 16:25:32 +08:00
|
|
|
|
U_Fun in '..\Z99Dependency\ThreeFun\Fun\U_Fun.pas',
|
|
|
|
|
U_SelExportField in '..\Z99Dependency\ThreeFun\Fun\U_SelExportField.pas' {frmSelExportField},
|
|
|
|
|
U_ColumnSet in '..\Z99Dependency\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet},
|
|
|
|
|
U_ColumnBandSet in '..\Z99Dependency\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet},
|
|
|
|
|
U_SelPrintFieldNew in '..\Z99Dependency\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
|
|
|
|
|
U_Fun10 in '..\Z99Dependency\ThreeFun\Fun\U_Fun10.pas',
|
|
|
|
|
U_CompressionFun in '..\Z99Dependency\ThreeFun\Fun\U_CompressionFun.pas';
|
2025-07-22 15:51:47 +08:00
|
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|