D7snShanfengT/山峰贸易管理/TradeManage.dpr

65 lines
2.5 KiB
ObjectPascal
Raw Permalink Normal View History

2026-02-26 09:41:35 +08:00
library TradeManage;
uses
SysUtils,
classes,
forms,
WinTypes,
WinProcs,
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_ZDYHelp in '..\Z99Dependency\ThreeFun\Form\U_ZDYHelp.pas' {frmZDYHelp},
U_GetAddRess in '..\Z99Dependency\ThreeFun\Form\U_GetAddRess.pas',
U_iniParam in 'U_iniParam.pas',
AES in 'AES.pas',
ElAES in 'ElAES.pas',
U_SelPrintFieldNew in '..\Z99Dependency\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
U_Fun10 in '..\Z99Dependency\ThreeFun\Fun\U_Fun10.pas',
U_DataLink in 'U_DataLink.pas' {DataLink_TradeManage: TDataModule},
U_ContractListXF_WC in 'U_ContractListXF_WC.pas' {frmContractList_XF_WC},
U_CompressionFun in '..\Z99Dependency\ThreeFun\Fun\U_CompressionFun.pas',
U_ColumnSet in '..\Z99Dependency\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet},
U_ColumnBandSet in '..\Z99Dependency\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet},
U_SelPrintField in '..\Z99Dependency\ThreeFun\Form\U_SelPrintField.pas' {frmSelPrintField},
U_FjList in '..\Z99Dependency\ThreeFun\Form\U_FjList.pas' {frmFjList},
U_ProductOrderMoneyList_GXCX in 'U_ProductOrderMoneyList_GXCX.pas' {frmProductOrderMoneyList_GXCX},
U_OrderInPut in 'U_OrderInPut.pas' {frmOrderInPut},
U_ZdyAttachKH in 'U_ZdyAttachKH.pas' {frmZdyAttachKH},
U_CPManageCX in 'U_CPManageCX.pas' {frmCPManage_CX},
U_SLT_CX in 'U_SLT_CX.pas' {frmSLT: TFrame},
U_Order_KCTX in 'U_Order_KCTX.pas' {FrmKCTiXing},
U_JGSXKNewList_SH in 'U_JGSXKNewList_SH.pas' {frmJGSXNewList_SH},
U_JGSXCKOutList_DJ in 'U_JGSXCKOutList_DJ.pas' {frmJGSXCKOutList_DJ},
U_CLJBC_Sub in 'U_CLJBC_Sub.pas' {frmCLJBC_Sub},
U_CaiGouSQChkList in 'U_CaiGouSQChkList.pas' {frmCaiGouSQChkList},
U_JWLKCList_MoneyMX in 'U_JWLKCList_MoneyMX.pas' {frmJWLKCList_MoneyMX},
U_JGSXKNewList_CLGLCX_HZMgg_GL in 'U_JGSXKNewList_CLGLCX_HZMgg_GL.pas' {frmJGSXKNewList_CLGLCX_HZMgg_GL},
U_JGSXCKInPut_CPCK in 'U_JGSXCKInPut_CPCK.pas' {frmJGSXCKInPut_CPCK},
U_RTFun in '..\Z99Dependency\RTFunAndForm\Fun\U_RTFun.pas';
{$R *.res} //13803186128
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.