blob: 3e4e087cbb892a27a44e87c6da31796e7e0910fe (
plain)
1
2
3
4
5
6
7
8
9
|
// Scintilla source code edit control
/** @file LexillaAccess.h
** Interface to Lexilla shared library.
**/
// Copyright 2019 by Neil Hodgson <neilh@scintilla.org>
// The License.txt file describes the conditions under which this software may be distributed.
Scintilla::ILexer5 *CreateLexer(std::string languageName);
bool LoadLexilla(std::filesystem::path path);
|