1 // Scintilla source code edit control
2 /** @file ScintillaWin.h
3  ** Define functions from ScintillaWin.cxx that can be called from ScintillaDLL.cxx.
4  **/
5 // Copyright 1998-2018 by Neil Hodgson <neilh@scintilla.org>
6 // The License.txt file describes the conditions under which this software may be distributed.
7 
8 #ifndef SCINTILLAWIN_H
9 #define SCINTILLAWIN_H
10 
11 class ScintillaWin;
12 
13 namespace Scintilla {
14 
15 int ResourcesRelease(bool fromDllMain) noexcept;
16 sptr_t DirectFunction(ScintillaWin *sci, UINT iMessage, uptr_t wParam, sptr_t lParam);
17 
18 }
19 
20 #endif
21