library FMMD; uses SysUtils, classes, forms, WinTypes, WinProcs, U_GetDllForm in 'U_GetDllForm.pas', U_ModuleNote in 'U_ModuleNote.pas' {frmModuleNote}, U_DataLink in 'U_DataLink.pas' {DataLink_FMMD: 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_DJBRKList_PBMonth in 'U_DJBRKList_PBMonth.pas' {frmDJBRKList_PBMonth}, U_DJBCKInPut_JTZS in 'U_DJBCKInPut_JTZS.pas' {frmDJBCKInPut_JTZS}, U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS}, U_BPShengChanListSXCX in 'U_BPShengChanListSXCX.pas' {frmBPShengChanListSXCX}, U_ShaKCList_HZ in 'U_ShaKCList_HZ.pas' {frmShaKCList_HZ}, U_WJGCKKCList in 'U_WJGCKKCList.pas' {frmWJGCKKCList}, 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' {frmContractCGJGSelList}, U_ContractCGJGChkList in 'U_ContractCGJGChkList.pas' {frmContractCGJGChkList}, U_ContractCGJGViewList in 'U_ContractCGJGViewList.pas' {frmContractCGJGViewList}, U_BZNewList in 'U_BZNewList.pas' {frmBZNewList}, U_CJRKInPut in 'U_CJRKInPut.pas' {frmCJRKInPut}, U_ProductOrderListSel in 'U_ProductOrderListSel.pas' {frmProductOrderListSel}, U_JGSXCKOutList in 'U_JGSXCKOutList.pas' {frmJGSXCKOutList}, U_JGSXCKOutPut in 'U_JGSXCKOutPut.pas' {frmJGSXCKOutPut}, U_JGSXCKKCSelList in 'U_JGSXCKKCSelList.pas' {frmJGSXCKKCSelList}, U_JGPBCKKCList in 'U_JGPBCKKCList.pas' {frmJGPBCKKCList}, U_WJGMDList in 'U_WJGMDList.pas' {frmWJGMDList}, U_WJGCKInPut in 'U_WJGCKInPut.pas' {frmWJGCKInPut}, U_WJGCKOutList in 'U_WJGCKOutList.pas' {frmWJGCKOutList}, U_WJGCKKCSelList in 'U_WJGCKKCSelList.pas' {frmWJGCKKCSelList}, U_WJGCKOutPut in 'U_WJGCKOutPut.pas' {frmWJGCKOutPut}, U_RTFun in '..\..\..\ThreeFun\Fun\U_RTFun.pas', U_DJBCKKCList_DDSH in 'U_DJBCKKCList_DDSH.pas' {frmDJBCKKCList_DDSH}, U_Fun in '..\..\..\ThreeFun\Fun\U_Fun.pas', U_SelExportField in '..\..\..\ThreeFun\Form\U_SelExportField.pas' {frmSelExportField}, U_ColumnSet in '..\..\..\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet}, U_ColumnBandSet in '..\..\..\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet}, U_SelPrintFieldNew in '..\..\..\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew}, U_Fun10 in '..\..\..\ThreeFun\Fun\U_Fun10.pas', U_CompressionFun in '..\..\..\ThreeFun\Fun\U_CompressionFun.pas', U_ZdyAttachment_CX in 'U_ZdyAttachment_CX.pas' {frmZdyAttachment_CX}; // 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.