aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexilla/src/Lexilla.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-01-29 20:51:34 +1100
committerNeil <nyamatongwe@gmail.com>2021-01-29 20:51:34 +1100
commit54341053b273c905afa7503d8dadcc4c46a0d2d3 (patch)
treee25fe4ee686d7d59068f46746006d62a8ca30692 /lexilla/src/Lexilla.h
parentba8b1a91525dd90f8fdcc75480f37815fecce2d2 (diff)
downloadscintilla-mirror-54341053b273c905afa7503d8dadcc4c46a0d2d3.tar.gz
Remove Lexilla files from Scintilla
Diffstat (limited to 'lexilla/src/Lexilla.h')
-rw-r--r--lexilla/src/Lexilla.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/lexilla/src/Lexilla.h b/lexilla/src/Lexilla.h
deleted file mode 100644
index 92b6378c0..000000000
--- a/lexilla/src/Lexilla.h
+++ /dev/null
@@ -1,19 +0,0 @@
-// 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.
-
-#if _WIN32
-#define LEXILLA_CALLING_CONVENTION __stdcall
-#else
-#define LEXILLA_CALLING_CONVENTION
-#endif
-
-extern "C" {
-
-Scintilla::ILexer5 * LEXILLA_CALLING_CONVENTION CreateLexer(const char *name);
-
-}