diff options
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); + +} |