55 lines
1.6 KiB
ObjectPascal
55 lines
1.6 KiB
ObjectPascal
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_Fun in '..\..\..\ThreeFun\Fun\U_Fun.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_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_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};
|
|
|
|
{$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.
|
|
|