aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/SciLexer.h
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2014-12-09 15:18:50 +1100
committerNeil <nyamatongwe@gmail.com>2014-12-09 15:18:50 +1100
commit0f31540d37923361c1c36b81af8271ce58c8cb02 (patch)
tree70e067ea0be43eea051b83b0925ebe5c80c3886c /include/SciLexer.h
parent835bb0f95ecce0dfeb307e7bd8c30e2b031d4076 (diff)
downloadscintilla-mirror-0f31540d37923361c1c36b81af8271ce58c8cb02.tar.gz
Feature [feature-requests:#1091]. Lexer for Motorola S-Record.
From Markus Heidelberg.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r--include/SciLexer.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h
index dc75a98b6..b2539eb91 100644
--- a/include/SciLexer.h
+++ b/include/SciLexer.h
@@ -129,6 +129,7 @@
#define SCLEX_DMIS 114
#define SCLEX_REGISTRY 115
#define SCLEX_BIBTEX 116
+#define SCLEX_SREC 117
#define SCLEX_AUTOMATIC 1000
#define SCE_P_DEFAULT 0
#define SCE_P_COMMENTLINE 1
@@ -1741,6 +1742,19 @@
#define SCE_BIBTEX_PARAMETER 4
#define SCE_BIBTEX_VALUE 5
#define SCE_BIBTEX_COMMENT 6
+#define SCE_SREC_DEFAULT 0
+#define SCE_SREC_RECSTART 1
+#define SCE_SREC_RECTYPE 2
+#define SCE_SREC_BYTECOUNT 3
+#define SCE_SREC_BYTECOUNT_WRONG 4
+#define SCE_SREC_NOADDRESS 5
+#define SCE_SREC_DATAADDRESS 6
+#define SCE_SREC_RECCOUNT 7
+#define SCE_SREC_STARTADDRESS 8
+#define SCE_SREC_DATA_ODD 9
+#define SCE_SREC_DATA_EVEN 10
+#define SCE_SREC_CHECKSUM 11
+#define SCE_SREC_CHECKSUM_WRONG 12
/* --Autogenerated -- end of section automatically generated from Scintilla.iface */
#endif