D7myzhenyong/船样仓库(样品&印花)/CPCK.~dpr
DESKTOP-E401PHE\Administrator 237de1c308 0
2025-08-26 15:25:51 +08:00

56 lines
1.6 KiB
Plaintext

library CPCK;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
U_DataLink in 'U_DataLink.pas' {CPCK_DataLink: TDataModule},
U_GetDllForm in 'U_GetDllForm.pas',
U_Fun10 in '..\..\..\ThreeFun\Fun\U_Fun10.pas',
U_getDogServer in '..\..\..\ThreeFun\Fun\U_getDogServer.pas',
U_ZDYHelp in '..\..\..\ThreeFun\Form\U_ZDYHelp.pas' {frmZDYHelp},
U_BpSmRk in 'U_BpSmRk.pas' {frmBpSmRk},
U_BpCklist in 'U_Bpcklist.pas' {frmBpCklist},
U_BpJylist in 'U_BpJylist.pas' {frmBpJylist},
U_BpRk in 'U_BpRk.pas' {frmbpRk},
U_ProductOrderNewList in 'U_ProductOrderNewList.pas' {frmProductOrderNewList},
U_BpCk in 'U_BpCk.pas' {frmbpCk},
U_BpSmCk in 'U_BpSmCk.pas' {frmBpSmCk},
U_BpRklist in 'U_BpRklist.pas' {frmBpRklist};
// 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.