xref: /MusicPlayer2/scintilla/src/ExternalLexer.h (revision f6e57922066e258d96270dbad8a21f4d0d0d85e3)
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