71 lines
2.7 KiB
ObjectPascal
71 lines
2.7 KiB
ObjectPascal
![]() |
library DyeingFinishingPlan;
|
|||
|
//һ<><D2BB>
|
|||
|
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_DyeingFinishingPlan: TDataModule},
|
|||
|
U_iniParam in 'U_iniParam.pas',
|
|||
|
U_ZDYHelp in 'U_ZDYHelp.pas' {frmZDYHelp},
|
|||
|
U_QXGL in 'U_QXGL.pas' {frmQXGL},
|
|||
|
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_CompressionFun in '..\..\..\public10\ThreeFun\Fun\U_CompressionFun.pas',
|
|||
|
U_FjList10 in '..\..\..\public10\ThreeFun\Form\U_FjList10.pas' {frmFjList10},
|
|||
|
U_ConLBNameSet in 'U_ConLBNameSet.pas' {frmConLBNameSet},
|
|||
|
U_ProductOrderListSel in '..\<5C><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(Financial.dll)\U_ProductOrderListSel.pas' {frmProductOrderList},
|
|||
|
U_OrderInPut in 'U_OrderInPut.pas' {frmOrderInPut},
|
|||
|
U_ZdyAttachment in 'U_ZdyAttachment.pas' {frmZdyAttachment},
|
|||
|
U_MJEdit in 'U_MJEdit.pas' {frmMJEdit},
|
|||
|
U_JYOrderCDList in 'U_JYOrderCDList.pas' {frmJYOrderCDList},
|
|||
|
U_JYOrderCDListGH in 'U_JYOrderCDListGH.pas' {frmJYOrderCDListGH},
|
|||
|
U_LabelList in 'U_LabelList.pas' {frmLabelList},
|
|||
|
U_LabelAdd in 'U_LabelAdd.pas' {frmLabelAdd},
|
|||
|
U_TableInspection in 'U_TableInspection.pas' {frmTableInspection},
|
|||
|
U_ContractListSel in 'U_ContractListSel.pas' {frmContractListSel},
|
|||
|
U_ZdyAttachGYS in 'U_ZdyAttachGYS.pas' {frmZdyAttachGYS},
|
|||
|
U_ZDYHelpSel in '..\..\..\public10\ThreeFun\Form\U_ZDYHelpSel.pas' {frmZDYHelpSel},
|
|||
|
U_JGCEdit in 'U_JGCEdit.pas' {frmJGCEdit},
|
|||
|
U_BaseHelp in '..\..\..\public10\design\U_BaseHelp.pas' {frmBaseHelp},
|
|||
|
U_LbaelMap in '..\..\..\public10\ThreeFun\Form\U_LbaelMap.pas' {frmLbaelMap},
|
|||
|
U_SysLogHelp in '..\..\..\public10\ThreeFun\Form\U_SysLogHelp.pas' {frmSysLogHelp},
|
|||
|
U_SDRKInspection in 'U_SDRKInspection.pas' {frmSDRKInspection},
|
|||
|
U_FileUp in 'U_FileUp.pas' {frmFileUp},
|
|||
|
U_BaseDataLink in '..\..\..\public10\design\U_BaseDataLink.pas' {BaseDataLink: TDataModule};
|
|||
|
|
|||
|
{$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.
|
|||
|
|