D7myYunxiang/云翔基础资料(BaseInfoYX.dll)/BaseInfoYX.dpr

71 lines
2.7 KiB
ObjectPascal
Raw Normal View History

2025-01-20 13:04:03 +08:00
library BaseInfoYX;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
U_DataLink in 'U_DataLink.pas' {DataLink_BaseInfoYX: TDataModule},
U_GetDllForm in 'U_GetDllForm.pas',
U_iniParam in 'U_iniParam.pas',
2025-07-19 16:54:23 +08:00
U_Fun in '..\Z99Dependency\ThreeFun\Fun\U_Fun.pas',
U_SelExportField in '..\Z99Dependency\ThreeFun\Fun\U_SelExportField.pas' {frmSelExportField},
U_ColumnSet in '..\Z99Dependency\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet},
U_ColumnBandSet in '..\Z99Dependency\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet},
U_SelPrintFieldNew in '..\Z99Dependency\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
U_Fun10 in '..\Z99Dependency\ThreeFun\Fun\U_Fun10.pas',
2025-01-20 13:04:03 +08:00
getpic_ceshi in 'getpic_ceshi.pas' {FormGetPic_ceshi},
2025-07-19 16:54:23 +08:00
U_CompressionFun in '..\Z99Dependency\ThreeFun\Fun\U_CompressionFun.pas',
U_ZDYHelp in '..\Z99Dependency\ThreeFun\Form\U_ZDYHelp.pas' {frmZDYHelp},
2025-01-20 13:04:03 +08:00
U_ZdyAttachmentX in 'U_ZdyAttachmentX.pas' {frmZdyAttachmentX},
U_ZdyAttInputX in 'U_ZdyAttInputX.pas' {frmZdyAttInput},
U_GYSListPBMainSub in 'U_GYSListPBMainSub.pas' {frmGYSListPBMainSub},
U_PBGYSInPutGR in 'U_PBGYSInPutGR.pas' {frmPBGYSInPutGR},
U_PBGYSInPut in 'U_PBGYSInPut.pas' {frmPBGYSInPut},
U_PBGYSInPutSubBank in 'U_PBGYSInPutSubBank.pas' {frmPBGYSInPutSubBank},
U_PBGYSInPutSub in 'U_PBGYSInPutSub.pas' {frmPBGYSInPutSub},
U_GSInPutMainBank in 'U_GSInPutMainBank.pas' {frmGSInPutMainBank},
U_DKExe in 'U_DKExe.pas' {frmDKExe},
U_openexe in 'U_openexe.pas' {frmopenexe},
U_UserMoreSel in 'U_UserMoreSel.pas' {frmUserMoreSel},
U_KHInPutMainWX in 'U_KHInPutMainWX.pas' {frmKHInPutMainWX},
U_KHInPutMainNX in 'U_KHInPutMainNX.pas' {frmKHInPutMainNX},
U_FjList in 'U_FjList.pas' {frmFjList},
U_InfoBtn in 'U_InfoBtn.pas' {frmInfoBtn},
U_RTFun in '..\..\..\RTFunAndForm\Fun\U_RTFun.pas';
// 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.