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