D7myYunxiang/云翔OA(WTOA.dll)/WTOA.dpr

77 lines
3.1 KiB
ObjectPascal
Raw Normal View History

2025-01-20 13:04:03 +08:00
library WTOA;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
U_GetDllForm in 'U_GetDllForm.pas',
U_ModuleNote in 'U_ModuleNote.pas' {frmModuleNote},
U_DataLink in 'U_DataLink.pas' {DataLink_WTOA: TDataModule},
U_YGXQAPList in 'U_YGXQAPList.pas' {frmYGXQAPList},
U_ZDYHelpSel in 'U_ZDYHelpSel.pas' {frmZDYHelpSel},
U_ZHKHListNewCX in 'U_ZHKHListNewCX.pas' {frmZHKHListNewCX},
U_iniParam in 'U_iniParam.pas',
U_UserModuleNameList in 'U_UserModuleNameList.pas' {frmUserModuleNameList},
U_SYDeptUserView in 'U_SYDeptUserView.pas' {frmSYDeptUserView},
U_CPType in 'U_CPType.pas' {frmCPType},
U_CPSel in 'U_CPSel.pas' {frmCPSel},
U_ZHKHListNew in 'U_ZHKHListNew.pas' {frmZHKHListNew},
U_ZDYBZType in 'U_ZDYBZType.pas' {frmZDYBZType},
U_SYDept in 'U_SYDept.pas' {frmSYDept},
U_GYSSelList in 'U_GYSSelList.pas' {frmGYSSelList},
U_SYDeptView_PF in 'U_SYDeptView_PF.pas' {frmSYDeptView_PF},
U_WorkDeptFeeList_YGXYSCX in 'U_WorkDeptFeeList_YGXYSCX.pas' {frmWorkDeptFeeList_YGXYSCX},
U_WorkerDeptFeeInPut_XYS in 'U_WorkerDeptFeeInPut_XYS.pas' {frmWorkerDeptFeeInPut_XYS},
U_WorkDeptFeeChkList_KF in 'U_WorkDeptFeeChkList_KF.pas' {frmWorkDeptFeeChkList_KF},
U_GRYearPFList_ZPF in 'U_GRYearPFList_ZPF.pas' {frmGRYearPFList_ZPF},
U_KDInPut in 'U_KDInPut.pas' {frmKDInPut},
U_KDChkList in 'U_KDChkList.pas' {frmKDChkList},
U_KDList in 'U_KDList.pas' {frmKDList},
2025-07-19 16:54:23 +08:00
U_RTFun in '..\Z99Dependency\ThreeFun\Fun\U_RTFun.pas',
2025-01-20 13:04:03 +08:00
U_YGYPZZSChkList_SH in 'U_YGYPZZSChkList_SH.pas' {frmYGYPZZSChkList_SH},
U_WorkDeptList_DKCX in 'U_WorkDeptList_DKCX.pas' {FrmWorkDeptList_DKCX},
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',
U_CompressionFun in '..\Z99Dependency\ThreeFun\Fun\U_CompressionFun.pas',
2025-01-20 13:04:03 +08:00
U_ShaRKList in 'U_ShaRKList.pas' {frmShaRKList};
// 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.