library FYSXCK; uses SysUtils, classes, forms, WinTypes, WinProcs, U_GetDllForm in 'U_GetDllForm.pas', U_RTFun in '..\..\..\RTFunAndForm\Fun\U_RTFun.pas', U_ModuleNote in 'U_ModuleNote.pas' {frmModuleNote}, U_DataLink in 'U_DataLink.pas' {DataLink_FYSXCK: TDataModule}, U_GYSList in 'U_GYSList.pas' {frmGYSList}, U_ZDYHelpSel in 'U_ZDYHelpSel.pas' {frmZDYHelpSel}, U_iniParam in 'U_iniParam.pas', U_ZDYHelp in 'U_ZDYHelp.pas' {frmZDYHelp}, U_GYSSelList in 'U_GYSSelList.pas' {frmGYSSelList}, U_DJBRKList in 'U_DJBRKList.pas' {frmDJBRKList}, U_DJBCKInPut in 'U_DJBCKInPut.pas' {frmDJBCKInPut}, U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS}, U_BPShengChanListSel in 'U_BPShengChanListSel.pas' {frmBPShengChanListSel}, U_DJBCKOutPut in 'U_DJBCKOutPut.pas' {frmDJBCKOutPut}, U_ShaKCList in 'U_ShaKCList.pas' {frmShaKCList}, U_DJBCKOutList in 'U_DJBCKOutList.pas' {frmDJBCKOutList}, U_WJGCKKCList in 'U_WJGCKKCList.pas' {frmWJGCKKCList}, U_DJBCKKCList in 'U_DJBCKKCList.pas' {frmDJBCKKCList}, U_ZdyAttachCP in 'U_ZdyAttachCP.pas' {frmZdyAttachCP}, U_ShaRKList in 'U_ShaRKList.pas' {frmShaRKList}, U_ShaOutList in 'U_ShaOutList.pas' {frmShaOutList}, U_ShaKCSelList in 'U_ShaKCSelList.pas' {frmShaKCSelList}, U_ShaOutPut in 'U_ShaOutPut.pas' {frmShaOutPut}, U_ShaRKInPut in 'U_ShaRKInPut.pas' {frmShaRKInPut}, U_ContractCGJGList in 'U_ContractCGJGList.pas' {frmContractCGJGList}, U_ClothContractInPutSXMX in 'U_ClothContractInPutSXMX.pas' {frmClothContractInPutSXMX}, U_ContractCGJGSelList in 'U_ContractCGJGSelList.pas' {frmContractCGJGViewList}; // 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.