2025-07-24 10:15:09 +08:00
|
|
|
|
library YXYMT;
|
|
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
|
SysUtils,
|
|
|
|
|
|
classes,
|
|
|
|
|
|
forms,
|
|
|
|
|
|
WinTypes,
|
|
|
|
|
|
WinProcs,
|
|
|
|
|
|
U_GetDllForm in 'U_GetDllForm.pas',
|
|
|
|
|
|
U_RTFun in '..\Z99Dependency\RTFunAndForm\Fun\U_RTFun.pas',
|
|
|
|
|
|
U_ModuleNote in 'U_ModuleNote.pas' {frmModuleNote},
|
2025-07-26 10:46:46 +08:00
|
|
|
|
U_DataLink in 'U_DataLink.pas' {DataLink_YXYMT: TDataModule},
|
2025-07-24 10:15:09 +08:00
|
|
|
|
U_ZDYHelpSel in 'U_ZDYHelpSel.pas' {frmZDYHelpSel},
|
|
|
|
|
|
U_iniParam in 'U_iniParam.pas',
|
|
|
|
|
|
U_ZDYHelp in 'U_ZDYHelp.pas' {frmZDYHelp},
|
|
|
|
|
|
U_Fun in '..\Z99Dependency\ThreeFun\Fun\U_Fun.pas',
|
|
|
|
|
|
U_ColumnSet in '..\Z99Dependency\ThreeFun\Form\U_ColumnSet.pas' {frmColumnSet},
|
|
|
|
|
|
U_ColumnBandSet in '..\Z99Dependency\ThreeFun\Form\U_ColumnBandSet.pas' {frmColumnBandSet},
|
|
|
|
|
|
U_SelPrintFieldNew in '..\Z99Dependency\ThreeFun\Form\U_SelPrintFieldNew.pas' {frmSelPrintFieldNew},
|
2025-08-07 11:08:39 +08:00
|
|
|
|
U_CompressionFun in '..\Z99Dependency\ThreeFun\Fun\U_CompressionFun.pas',
|
|
|
|
|
|
superobject in '..\Z99Dependency\ThreeFun\Fun\superobject.pas',
|
|
|
|
|
|
U_ClientPrintRmf in '..\A00<30><30>ǩ<EFBFBD><C7A9>ӡ\U_ClientPrintRmf.pas' {frmClientPrintRmf},
|
|
|
|
|
|
U_LabelMapSet in '..\A00<30><30>ǩ<EFBFBD><C7A9>ӡ\U_LabelMapSet.pas' {frmLabelMapSet},
|
2025-08-08 10:52:04 +08:00
|
|
|
|
U_LabelPrint in '..\A00<30><30>ǩ<EFBFBD><C7A9>ӡ\U_LabelPrint.pas' {frmLabelPrint},
|
2025-08-30 14:29:28 +08:00
|
|
|
|
U_LabelPrintFun in '..\A00<30><30>ǩ<EFBFBD><C7A9>ӡ\U_LabelPrintFun.pas',
|
2025-09-20 10:39:47 +08:00
|
|
|
|
U_QrCodeFun in '..\A00<30><30>ǩ<EFBFBD><C7A9>ӡ\U_QrCodeFun.pas',
|
|
|
|
|
|
U_YMTFHDataList in 'U_YMTFHDataList.pas' {frmYMTFHDataList},
|
2025-10-20 11:30:39 +08:00
|
|
|
|
U_YMTJGWCList in 'U_YMTJGWCList.pas' {frmYMTJGWCList},
|
|
|
|
|
|
U_YMTFHSQInPut2 in 'U_YMTFHSQInPut2.pas' {frmFHSQInPut2},
|
|
|
|
|
|
U_YMTStockSel in 'U_YMTStockSel.pas' {frmStockSel},
|
|
|
|
|
|
U_YMTStockList in 'U_YMTStockList.pas' {frmStockList},
|
|
|
|
|
|
U_SelExportField in '..\Z99Dependency\ThreeFun\Fun\U_SelExportField.pas' {frmSelExportField};
|
2025-07-24 10:15:09 +08:00
|
|
|
|
|
|
|
|
|
|
{$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.
|
|
|
|
|
|
|