notepad-plus-plus/scintilla/win32/ScintillaWin.h

21 lines
548 B
C
Raw Normal View History

2019-05-04 18:14:48 +00:00
// 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.
#ifndef SCINTILLAWIN_H
#define SCINTILLAWIN_H
2019-05-04 18:14:48 +00:00
class ScintillaWin;
namespace Scintilla {
int ResourcesRelease(bool fromDllMain) noexcept;
2019-05-04 18:14:48 +00:00
sptr_t DirectFunction(ScintillaWin *sci, UINT iMessage, uptr_t wParam, sptr_t lParam);
}
#endif