D7YPDJlingyao/样品仓库/YPCK.dpr

59 lines
2.0 KiB
ObjectPascal
Raw Permalink Normal View History

2025-07-19 16:53:04 +08:00
library YPCK;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
U_DataLink in 'U_DataLink.pas' {YPCK_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_Bpckchklist in 'U_Bpckchklist.pas' {frmBpckchklist},
U_BpJylist in 'U_BpJylist.pas' {frmBpJylist},
U_ProductOrderNewList in 'U_ProductOrderNewList.pas' {frmProductOrderNewList},
U_BpDY in 'U_BpDY.pas' {frmbpDY},
U_BpSmCk in 'U_BpSmCk.pas' {frmBpSmCk},
U_BpDYlist in 'U_BpDYlist.pas' {frmBpDYlist},
U_CPManageSel in 'U_CPManageSel.pas' {frmCPManageSel},
U_SLT in 'U_SLT.pas' {frmSLT: TFrame},
U_ZdyAttachment in 'U_ZdyAttachment.pas' {frmZdyAttachment},
U_Bpkcsumlist in 'U_Bpkcsumlist.pas' {frmBpkcsumlist},
U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS},
U_ZdyAttachmentBJ in 'U_ZdyAttachmentBJ.pas' {frmZdyAttachmentCB},
U_ZdyAttachmentBJ_Edit in 'U_ZdyAttachmentBJ_Edit.pas' {frmZdyAttachmentBJ_Edit},
U_SysLogHelp in '..\..\..\ThreeFun\Form\U_SysLogHelp.pas' {frmSysLogHelp},
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_SelPrintFieldNew in '..\..\..\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew};
{$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.