xref: /MusicPlayer2/scintilla/src/ExternalLexer.h (revision 67ca1ef4c5be62e9a917ffa576a24422d15e109a)
1 // Scintilla source code edit control
2 /** @file ExternalLexer.h
3  ** Support external lexers in DLLs or shared libraries.
4  **/
5 // Copyright 2001 Simon Steele <[email protected]>, portions copyright Neil Hodgson.
6 // The License.txt file describes the conditions under which this software may be distributed.
7 
8 #ifndef EXTERNALLEXER_H
9 #define EXTERNALLEXER_H
10 
11 namespace Scintilla {
12 
13 void ExternalLexerLoad(const char *path);
14 
15 }
16 
17 #endif
18