D7wmoukai/坯布码单待检(PBMDDJ.dll)/PBMDDJ.dpr

68 lines
2.4 KiB
ObjectPascal
Raw Permalink Normal View History

2025-07-19 17:24:07 +08:00
library PBMDDJ;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
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_CPRKList in 'U_CPRKList.pas' {frmCPRKList},
U_CPCKInPut in 'U_CPCKInPut.pas' {frmCPCKInPut},
U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS},
U_ProductOrderListSelPBRK in 'U_ProductOrderListSelPBRK.pas' {frmProductOrderListSelPBRK},
U_CPCKOutPut in 'U_CPCKOutPut.pas' {frmCPCKOutPut},
U_PBCKKCList in 'U_PBCKKCList.pas' {frmPBCKKCList},
U_CPCKOutList in 'U_CPCKOutList.pas' {frmCPCKOutList},
U_WJGCKKCList in 'U_WJGCKKCList.pas' {frmWJGCKKCList},
U_CPCKKCList in 'U_CPCKKCList.pas' {frmCPCKKCList},
U_ZdyAttachCP in 'U_ZdyAttachCP.pas' {frmZdyAttachCP},
U_ZdyAttachment in 'U_ZdyAttachment.pas' {frmZdyAttachment},
U_Fun10 in '..\..\..\ThreeFun\Fun\U_Fun10.pas',
U_CompressionFun in '..\..\..\ThreeFun\Fun\U_CompressionFun.pas',
U_FjList10 in '..\..\..\ThreeFun\Form\U_FjList10.pas' {frmFjList10},
U_ProductOrderListSel1 in 'U_ProductOrderListSel1.pas' {frmProductOrderListSel1},
U_CPCKKCSelList in 'U_CPCKKCSelList.pas' {frmCPCKKCSelList};
// 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.