diff options
author | Neil <nyamatongwe@gmail.com> | 2015-07-29 09:46:53 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2015-07-29 09:46:53 +1000 |
commit | 7604a6b2a98fc2250408368eb51f8f6827d888c8 (patch) | |
tree | 12d1805299de9c35a8c3e17a92480212125f50c0 /lexlib/LexerModule.h | |
parent | e9f77f985ad02f0bc79580e3df572c6c6449d03e (diff) | |
download | scintilla-mirror-7604a6b2a98fc2250408368eb51f8f6827d888c8.tar.gz |
Change lexlib to use Sci_Position and Sci_PositionU to prepare for large file
support.
Diffstat (limited to 'lexlib/LexerModule.h')
-rw-r--r-- | lexlib/LexerModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexlib/LexerModule.h b/lexlib/LexerModule.h index 3ca978a53..356ff27e9 100644 --- a/lexlib/LexerModule.h +++ b/lexlib/LexerModule.h @@ -15,7 +15,7 @@ namespace Scintilla { class Accessor; class WordList; -typedef void(*LexerFunction)(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, +typedef void (*LexerFunction)(Sci_PositionU startPos, Sci_Position lengthDoc, int initStyle, WordList *keywordlists[], Accessor &styler); typedef ILexer *(*LexerFactoryFunction)(); |