From cb6af182a82c7400496dd2f512ff50bbbcc055e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D0=BE=D0=BD=D0=B4=D0=B0=D1=80=D0=B5=D0=B2=20=D0=98?= =?UTF-8?q?=D0=B2=D0=B0=D0=BD?= Date: Sun, 1 Nov 2020 10:42:10 +0100 Subject: [PATCH] fix #2336 --- ReleaseGenerators/PABCRtl/PABCRtl.pas | 2 +- ReleaseGenerators/PABCRtl/PABCRtl32.pas | 2 +- bin/Lib/BlockFileOfT.pas | 9 +++++++++ bin/Lib/NumLibABC.pas | 8 ++++++++ bin/Lib/SF.pas | 11 +++++++++++ bin/Lib/School.pas | 9 +++++++++ 6 files changed, 39 insertions(+), 2 deletions(-) diff --git a/ReleaseGenerators/PABCRtl/PABCRtl.pas b/ReleaseGenerators/PABCRtl/PABCRtl.pas index 5fca3a61b..d04554106 100644 --- a/ReleaseGenerators/PABCRtl/PABCRtl.pas +++ b/ReleaseGenerators/PABCRtl/PABCRtl.pas @@ -5,7 +5,7 @@ uses ABCSprites, CRT, DMCollect, DMTaskMaker, DMZadan, Drawman, DrawManField, Events, FilesOperations, GraphABC, GraphABCHelper, IniFile, PointerTools, PointRect, Robot, RobotField, - RobotTaskMaker, RobotZadan, Sockets, Utils, VCL, Timers, PT4TaskMakerNET, RBDMUtils, + RobotTaskMaker, RobotZadan, Sockets, Utils, VCL, Timers, PT4TaskMakerNET, RBDMUtils, SF, School, BlockFileOfT, FormsABC, Collections, Arrays, ClientServer, WPFObjects, Graph3D, GraphWPF, __RedirectIOMode, __RunMode, __RtlUtils; end. \ No newline at end of file diff --git a/ReleaseGenerators/PABCRtl/PABCRtl32.pas b/ReleaseGenerators/PABCRtl/PABCRtl32.pas index 6f808629a..5277da7d7 100644 --- a/ReleaseGenerators/PABCRtl/PABCRtl32.pas +++ b/ReleaseGenerators/PABCRtl/PABCRtl32.pas @@ -5,7 +5,7 @@ uses ABCSprites, CRT, DMCollect, DMTaskMaker, DMZadan, Drawman, DrawManField, Events, FilesOperations, GraphABC, GraphABCHelper, IniFile, PointerTools, PointRect, Robot, RobotField, - RobotTaskMaker, RobotZadan, Sockets, Utils, VCL, Timers, PT4, PT4TaskMakerNET, RBDMUtils, + RobotTaskMaker, RobotZadan, Sockets, Utils, VCL, Timers, PT4, PT4TaskMakerNET, RBDMUtils, SF, School, BlockFileOfT, FormsABC, Collections, Arrays, ClientServer, Graph3D, GraphWPF, WPFObjects, __RedirectIOMode, __RunMode, __RtlUtils; end. \ No newline at end of file diff --git a/bin/Lib/BlockFileOfT.pas b/bin/Lib/BlockFileOfT.pas index c3b6c371a..829863a28 100644 --- a/bin/Lib/BlockFileOfT.pas +++ b/bin/Lib/BlockFileOfT.pas @@ -830,4 +830,13 @@ end; {$endregion Utils} +///-- +procedure __InitModule__; +begin +end; + +///-- +procedure __FinalizeModule__; +begin +end; end. \ No newline at end of file diff --git a/bin/Lib/NumLibABC.pas b/bin/Lib/NumLibABC.pas index ef5d09186..5948da0bd 100644 --- a/bin/Lib/NumLibABC.pas +++ b/bin/Lib/NumLibABC.pas @@ -2776,5 +2776,13 @@ end; {$endregion} //---------------------------------------- +///-- +procedure __InitModule__; +begin +end; +///-- +procedure __FinalizeModule__; +begin +end; end. \ No newline at end of file diff --git a/bin/Lib/SF.pas b/bin/Lib/SF.pas index 881a6620d..a742cdbeb 100644 --- a/bin/Lib/SF.pas +++ b/bin/Lib/SF.pas @@ -223,4 +223,15 @@ procedure Tr(a: array of T; transform: T->T) := a.Transform(transform); function H(Self: array of T): integer; extensionmethod := Self.High; +///-- +procedure __InitModule__; +begin +end; + +///-- +procedure __FinalizeModule__; +begin +end; + + end. \ No newline at end of file diff --git a/bin/Lib/School.pas b/bin/Lib/School.pas index 52cec2eef..ccc3f9857 100644 --- a/bin/Lib/School.pas +++ b/bin/Lib/School.pas @@ -755,4 +755,13 @@ end; {$endregion} +///-- +procedure __InitModule__; +begin +end; + +///-- +procedure __FinalizeModule__; +begin +end; end. \ No newline at end of file