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 /win32/ScintillaWin.h | |
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 'win32/ScintillaWin.h')
-rw-r--r-- | win32/ScintillaWin.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/win32/ScintillaWin.h b/win32/ScintillaWin.h new file mode 100644 index 000000000..6d4d2ce26 --- /dev/null +++ b/win32/ScintillaWin.h @@ -0,0 +1,15 @@ +// Scintilla source code edit control +/** @file ScintillaWin.h + ** Define functions from ScintillaWin.cxx that can be called from ScintillaDLL.cxx. + **/ +// Copyright 1998-2018 by Neil Hodgson <neilh@scintilla.org> +// The License.txt file describes the conditions under which this software may be distributed. + +class ScintillaWin; + +namespace Scintilla { + +int ResourcesRelease(bool fromDllMain); +sptr_t DirectFunction(ScintillaWin *sci, UINT iMessage, uptr_t wParam, sptr_t lParam); + +} |