diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-04 16:21:09 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-04 16:21:09 +1000 |
commit | a6dd4eeab87d2562bd6280c594e01869e0bc4aa1 (patch) | |
tree | 8e54c0ee625433c6b081d784a4fcba19bbd3f30e /doc/ScintillaHistory.html | |
parent | c1886dc599e9d985abef06d8779cfc90478c9ebd (diff) | |
download | scintilla-mirror-a6dd4eeab87d2562bd6280c594e01869e0bc4aa1.tar.gz |
Move DLL entry points DllMain and Scintilla_DirectFunction into ScintillaDLL.cxx
to simplify build process by eliminating the compilation of ScintillaWin.cxx
into ScintillaWinS.o|obj.
Diffstat (limited to 'doc/ScintillaHistory.html')
-rw-r--r-- | doc/ScintillaHistory.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 222b29a2e..5e89dd1cb 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -543,7 +543,10 @@ </li> <li> On Win32, the standard makefiles build a libscintilla static library as well as the existing dynamic libraries. - The statically linked version of SciTE, Sc1, links to this static library. + The statically linked version of SciTE, Sc1, links to this static library. A new file, ScintillaDLL.cxx, provides + the DllMain function required for a stand-alone Scintilla DLL. Build and project files should include this + file when producing a DLL and omit it when producing a static library or linking Scintilla statically. + The STATIC_BUILD preprocessor symbol is no longer used. </li> <li> In some cases, invalid UTF-8 is handled in a way that is a little friendlier. |