aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexilla/src/Lexilla.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2019-12-13 22:28:13 +1100
committerNeil <nyamatongwe@gmail.com>2019-12-13 22:28:13 +1100
commit38e4d3cbc591f06a6663d6c0962bc17ea73d61ad (patch)
tree83ee4102d4d9a7c7d92c308d06bfe0459588892a /lexilla/src/Lexilla.h
parenta8141c4c11ad77014802d003d649abc8335a4f70 (diff)
downloadscintilla-mirror-38e4d3cbc591f06a6663d6c0962bc17ea73d61ad.tar.gz
Lexilla implemented as loadable lexer.
Diffstat (limited to 'lexilla/src/Lexilla.h')
-rw-r--r--lexilla/src/Lexilla.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/lexilla/src/Lexilla.h b/lexilla/src/Lexilla.h
new file mode 100644
index 000000000..a2a2e010d
--- /dev/null
+++ b/lexilla/src/Lexilla.h
@@ -0,0 +1,13 @@
+// Scintilla source code edit control
+/** @file Lexilla.h
+ ** Lexer infrastructure.
+ ** Declare functions in Lexilla library.
+ **/
+// Copyright 2019 by Neil Hodgson <neilh@scintilla.org>
+// The License.txt file describes the conditions under which this software may be distributed.
+
+extern "C" {
+
+Scintilla::ILexer4 *CreateLexer(const char *name);
+
+}