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 <ss@pnotepad.org>, 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