library Financial; uses SysUtils, classes, forms, WinTypes, WinProcs, midaslib, U_GetDllForm in 'U_GetDllForm.pas', U_ModuleNote in 'U_ModuleNote.pas' {frmModuleNote}, U_DataLink in 'U_DataLink.pas' {DataLink_Financial: TDataModule}, U_iniParam in 'U_iniParam.pas', U_CWYSList in 'U_CWYSList.pas' {frmCWYSList}, U_BaseHelp in '..\..\..\public10\design\U_BaseHelp.pas' {frmBaseHelp}, U_BaseInput in '..\..\..\public10\design\U_BaseInput.pas' {frmBaseInput}, U_BaseList in '..\..\..\public10\design\U_BaseList.pas' {frmBaseList}, U_cxGridCustomCss in '..\..\..\public10\design\U_cxGridCustomCss.pas', U_globalVar in '..\..\..\public10\design\U_globalVar.pas', U_WindowFormdesign in '..\..\..\public10\design\U_WindowFormdesign.pas', U_RTFun in '..\..\..\public10\ThreeFun\Fun\U_RTFun.pas', U_KHSel in 'U_KHSel.pas' {frmKHSel}, U_CWSKList in 'U_CWSKList.pas' {frmCWSKList}, U_InvoiceXX in 'U_InvoiceXX.pas' {frmInvoiceXX}, U_InvoiceXXInPut in 'U_InvoiceXXInPut.pas' {frmInvoiceXXInPut}, U_CWKHDZList in 'U_CWKHDZList.pas' {frmCWKHDZList}, U_CWKHDZMXList in 'U_CWKHDZMXList.pas' {frmCWKHDZMXList}, U_InvoiceJXInPut in 'U_InvoiceJXInPut.pas' {frmInvoiceJXInPut}, U_GYSKPSel in 'U_GYSKPSel.pas' {frmGYSKPSel}, U_CWGYSDZYueList in 'U_CWGYSDZYueList.pas' {frmCWGYSDZYueList}, U_CWYFFPHXList in 'U_CWYFFPHXList.pas' {frmCWYFFPHXList}, U_CWFYList in 'U_CWFYList.pas' {frmCWFYList}, U_InvoiceJX in 'U_InvoiceJX.pas' {frmInvoiceJX}, U_CWGYSKPFKList in 'U_CWGYSKPFKList.pas' {frmCWGYSKPFKList}, U_ZDYHelpSel in '..\..\..\public10\ThreeFun\Form\U_ZDYHelpSel.pas' {frmZDYHelpSel}, U_ZDYHelp in '..\..\..\public10\ThreeFun\Form\U_ZDYHelp.pas' {frmZDYHelp}, U_KhHKList in 'U_KhHKList.pas' {frmKhHKList}, U_JXFPHx in 'U_JXFPHx.pas' {frmJXFPHx}, U_JXFPHXList in 'U_JXFPHXList.pas' {frmJXFPHXList}, U_CW_Money_LL in 'U_CW_Money_LL.pas' {frmMoney_LL}, U_BankListSel in 'U_BankListSel.pas' {frmBankListSel}, U_CWLLInput in 'U_CWLLInput.pas' {frmCWLLInput}, U_YF_Money_LLHZ in 'U_YF_Money_LLHZ.pas' {frmYF_Money_LLHZ}, U_skHx in 'U_skHx.pas' {frmskHx}, U_FKHx in 'U_FKHx.pas' {frmFKHx}, U_ProductOrderListSel in 'U_ProductOrderListSel.pas' {frmProductOrderListSel}, U_FjList10 in '..\..\..\public10\ThreeFun\Form\U_FjList10.pas' {frmFjList10}, U_CompressionFun in '..\..\..\public10\ThreeFun\Form\U_CompressionFun.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.