68 lines
2.4 KiB
ObjectPascal
68 lines
2.4 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_BpJGlist in 'U_BpJGlist.pas' {frmBpJGlist},
|
|
U_Bpkclist in 'U_Bpkclist.pas' {frmBpkclist},
|
|
U_BpCklist in 'U_BpCklist.pas' {frmBpCklist},
|
|
U_CPKWListSel in 'U_CPKWListSel.pas' {frmCPKWListSel},
|
|
U_CPCKMXLR in 'U_CPCKMXLR.pas' {frmCPCKMXLR},
|
|
U_ZdyYS_Sel in 'U_ZdyYS_Sel.pas' {frmZdyYS_Sel};
|
|
|
|
// 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.
|
|
|