58 lines
1.8 KiB
ObjectPascal
58 lines
1.8 KiB
ObjectPascal
![]() |
library BaseData;
|
||
|
|
||
|
uses
|
||
|
SysUtils,
|
||
|
classes,
|
||
|
forms,
|
||
|
WinTypes,
|
||
|
WinProcs,
|
||
|
U_DataLink in 'U_DataLink.pas' {BaseData10_DataLink: TDataModule},
|
||
|
U_GetDllForm in 'U_GetDllForm.pas',
|
||
|
U_getDogServer in '..\..\..\ThreeFun\Fun\U_getDogServer.pas',
|
||
|
U_User_bz_List in 'U_User_bz_List.pas' {frmUser_bz_List},
|
||
|
U_User10 in 'U_User10.pas' {frmUser10},
|
||
|
U_ZDYHelp in '..\..\..\ThreeFun\Form\U_ZDYHelp.pas' {frmZDYHelp},
|
||
|
U_UserHelp_Bz in 'U_UserHelp_Bz.pas' {frmUserHelp_Bz},
|
||
|
U_UserList in 'U_UserList.pas' {frmUserList},
|
||
|
U_Fun10 in '..\..\..\ThreeFun\Fun\U_Fun10.pas',
|
||
|
U_PublicFunction in '..\..\..\ThreeFun\Fun\U_PublicFunction.pas',
|
||
|
getpic in 'getpic.pas' {FormGetPic},
|
||
|
U_Fun in '..\..\..\ThreeFun\Fun\U_Fun.pas',
|
||
|
U_SelExportField in '..\..\..\ThreeFun\Fun\U_SelExportField.pas' {frmSelExportField},
|
||
|
U_ColumnBandSet in '..\..\..\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet},
|
||
|
U_ColumnSet in '..\..\..\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet},
|
||
|
U_SelPrintFieldNew in '..\..\..\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew};
|
||
|
|
||
|
// 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
|
||
|
|
||
|
end;
|
||
|
exports
|
||
|
GetDllForm;
|
||
|
begin
|
||
|
try
|
||
|
NewDllApp:=Application;
|
||
|
DLLProc := @DLLUnloadProc;
|
||
|
except
|
||
|
|
||
|
end;
|
||
|
end.
|
||
|
|