library YSYF; uses SysUtils, classes, forms, WinTypes, WinProcs, U_DataLink in 'U_DataLink.pas' {DataLink_YSYF: TDataModule}, U_GetDllForm in 'U_GetDllForm.pas', U_ZDYHelpSel in '..\..\..\ThreeFun\Form\U_ZDYHelpSel.pas' {frmZDYHelpSel}, U_Fun in '..\..\..\ThreeFun\Fun\U_Fun.pas', U_SelExportField in '..\..\..\ThreeFun\Fun\U_SelExportField.pas' {frmSelExportField}, U_ColumnSet in '..\..\..\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet}, U_ZDYHelp in '..\..\..\ThreeFun\Form\U_ZDYHelp.pas' {frmZDYHelp}, U_ColumnBandSet in '..\..\..\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet}, U_SelPrintFieldNew in '..\..\..\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew}, U_ProductOrderCost in 'U_ProductOrderCost.pas' {frmProductOrderCost}, U_YSSKList in 'U_YSSKList.pas' {frmYSSKList}, U_SKCROLJ in 'U_SKCROLJ.pas' {frmSKCROLJ}, U_YSCROL in 'U_YSCROL.pas' {frmYSCROL}, U_FKCRLZ in 'U_FKCRLZ.pas' {frmFKCRLZ}, U_YSFP in 'U_YSFP.pas' {frmYSFP}, U_ProductOrderList in 'U_ProductOrderList.pas' {frmProductOrderList}, U_PbProductList in 'U_PbProductList.pas' {frmPbProductList}, U_ProductOrderListOLJ in 'U_ProductOrderListOLJ.pas' {frmProductOrderListOLJ}, U_YSCRJZC in 'U_YSCRJZC.pas' {frmYSCRJZC}, U_SKCRLZ in 'U_SKCRLZ.pas' {frmSKCRLZ}, U_YSHZMXView in 'U_YSHZMXView.pas' {frmYSHZMXView}, U_YFCRLZView in 'U_YFCRLZView.pas' {frmYFCRLZView}, U_YFCRLZQty in 'U_YFCRLZQty.pas' {frmYFCRLZQty}, U_Fun10 in '..\..\..\ThreeFun\Fun\U_Fun10.pas', U_YSMXlist in 'U_YSMXlist.pas' {frmYSMXlist}, U_ZdyAttachCP in 'U_ZdyAttachCP.pas' {frmZdyAttachCP}, U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS}, U_ZdyAttachment in 'U_ZdyAttachment.pas' {frmZdyAttachment}, U_skHx in 'U_skHx.pas' {frmskHx}, U_YKHXList in 'U_YKHXList.pas' {frmYKHXList}, U_FDINVOICE in 'U_FDINVOICE.pas'{frmFDINVOICE}; // 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.