55 lines
1.9 KiB
ObjectPascal
55 lines
1.9 KiB
ObjectPascal
library BPCK;
|
|
|
|
uses
|
|
SysUtils,
|
|
classes,
|
|
forms,
|
|
WinTypes,
|
|
WinProcs,
|
|
U_DataLink in 'U_DataLink.pas' {BPCK_DataLink: TDataModule},
|
|
U_GetDllForm in 'U_GetDllForm.pas',
|
|
U_Fun10 in '..\..\..\ThreeFun\Fun\U_Fun10.pas',
|
|
U_BpRklist in 'U_BpRklist.pas' {frmBpRklist},
|
|
U_BpCk in 'U_BpCk.pas' {frmbpCk},
|
|
U_BpGdCklist in 'U_BpGdCklist.pas' {frmBpGdCklist},
|
|
U_BpRk in 'U_BpRk.pas' {frmbpRk},
|
|
U_ZDYHelp in '..\..\..\ThreeFun\Form\U_ZDYHelp.pas' {frmZDYHelp},
|
|
U_ProductOrderNewListSEl in 'U_ProductOrderNewListSEl.pas' {frmProductOrderNewListSEl},
|
|
U_ZdyAttachCP in 'U_ZdyAttachCP.pas' {frmZdyAttachCP},
|
|
U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS},
|
|
U_ZdyAttachment in 'U_ZdyAttachment.pas' {frmZdyAttachment},
|
|
U_BpGdCkEdit in 'U_BpGdCkEdit.pas' {frmBpGdCkEdit},
|
|
U_Fun in '..\..\..\ThreeFun\Fun\U_Fun.pas',
|
|
U_SelExportField in '..\..\..\ThreeFun\Form\U_SelExportField.pas' {frmSelExportField},
|
|
U_SelPrintField in '..\..\..\ThreeFun\Form\U_SelPrintField.pas' {frmSelPrintField},
|
|
U_SelPrintFieldNew in '..\..\..\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
|
|
U_ColumnSet in '..\..\..\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet},
|
|
U_ColumnBandSet in '..\..\..\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet},
|
|
U_ZdyAttachmentBJ_Edit in 'U_ZdyAttachmentBJ_Edit.pas' {frmZdyAttachmentBJ_Edit},
|
|
U_ZdyAttachmentBJ in 'U_ZdyAttachmentBJ.pas' {frmZdyAttachmentCB};
|
|
|
|
{$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.
|
|
|