xref: /MusicPlayer2/scintilla/win32/ScintillaWin.h (revision 443d2d2511be730d1b1dd3181942b7fa6539aa1a)
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 <[email protected]>
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