D7myYunxiang/云翔财务(Money.dll)/Money.dpr
DESKTOP-E401PHE\Administrator 914ef198d5 Apply new .gitignore
2025-07-19 16:54:23 +08:00

85 lines
3.3 KiB
ObjectPascal

library Money;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
U_DataLink in 'U_DataLink.pas' {DataLink_Money: TDataModule},
U_GetDllForm in 'U_GetDllForm.pas',
U_ZDYHelpSel in '..\Z99Dependency\ThreeFun\Form\U_ZDYHelpSel.pas' {frmZDYHelpSel},
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_ZDYHelp in '..\Z99Dependency\ThreeFun\Form\U_ZDYHelp.pas' {frmZDYHelp},
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_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS},
U_ZdyAttachment in 'U_ZdyAttachment.pas' {frmZdyAttachment},
U_YFCRSave in 'U_YFCRSave.pas' {frmYFCRSave},
U_FKCRSave in 'U_FKCRSave.pas' {frmFKCRSave},
U_CPCKNewList in 'U_CPCKNewList.pas' {frmCPCKNewList},
U_GYSFKInPut in 'U_GYSFKInPut.pas' {frmGYSFKInPut},
U_YFFKListDZEY in 'U_YFFKListDZEY.pas' {frmYFFKListDZEY},
U_CPView in 'U_CPView.pas' {frmCPView},
U_YCLView in 'U_YCLView.pas' {frmYCLView},
U_ZdyAttInputCP in 'U_ZdyAttInputCP.pas' {frmZdyAttInputCP},
U_ZdyAttInputYCL in 'U_ZdyAttInputYCL.pas' {frmZdyAttInputYCL},
U_GYSListSel in 'U_GYSListSel.pas' {frmGYSListSel},
U_YFCRSaveQC in 'U_YFCRSaveQC.pas' {frmYFCRSaveQC},
U_GYSFKChkList in 'U_GYSFKChkList.pas' {frmGYSFKChkList},
U_FjList in 'U_FjList.pas' {frmFjList},
U_GSListBankSel in 'U_GSListBankSel.pas' {frmGSListBankSel},
U_GSInPutMain in 'U_GSInPutMain.pas' {frmGSInPutMain},
U_GSInPutMainBank in 'U_GSInPutMainBank.pas' {frmGSInPutMainBank},
U_YSQtyEdit in 'U_YSQtyEdit.pas' {frmYSQtyEdit},
U_GYSFKListView in 'U_GYSFKListView.pas' {frmGYSFKListView},
U_SCPerson in 'U_SCPerson.pas' {frmSCPerson},
U_YSSKList in 'U_YSSKList.pas' {frmYSSKList},
U_RTFun in '..\..\..\RTFunAndForm\Fun\U_RTFun.pas',
U_YSSKListRMBMJDZEY in 'U_YSSKListRMBMJDZEY.pas' {frmYSSKListRMBMJDZEY},
U_YSCRSaveQC in 'U_YSCRSaveQC.pas' {frmYSCRSaveQC},
U_CaiWuHuilV in 'U_CaiWuHuilV.pas' {frmCaiWuHuiLV},
U_GYSRFList in 'U_GYSRFList.pas' {frmGYSRFList},
U_YWYTop in 'U_YWYTop.pas' {frmYWYTop},
U_YWYTopKHMX in 'U_YWYTopKHMX.pas' {frmYWYTopKHMX},
U_TJWorkerPayListB in 'U_TJWorkerPayListB.pas' {frmTJWorkerPayListB},
U_WorkPayInPutB in 'U_WorkPayInPutB.pas' {frmWorkPayInPutB};
// 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.