diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/Scintilla.h | 6 | ||||
-rw-r--r-- | include/Scintilla.iface | 7 |
2 files changed, 9 insertions, 4 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 8497b123a..ca81d135b 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -217,9 +217,11 @@ typedef long (*SciFnDirect)(long ptr, unsigned int iMessage, unsigned long wPara #define SC_PRINT_BLACKONWHITE 2 #define SCI_SETPRINTCOLOURMODE 2148 #define SCI_GETPRINTCOLOURMODE 2149 -#define SCFIND_MATCHCASE 4 -#define SCFIND_WHOLEWORD 2 #define SCFIND_DOWN 1 +#define SCFIND_WHOLEWORD 2 +#define SCFIND_MATCHCASE 4 +#define SCFIND_WORDSTART 0x00100000 +#define SCFIND_REGEXP 0x00200000 #define SCI_FINDTEXT 2150 #define SCI_FORMATRANGE 2151 #define SCI_GETFIRSTVISIBLELINE 2152 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 536ebbd6a..052af92c4 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -557,9 +557,12 @@ set void SetPrintColourMode=2148(int mode,) # Returns the print colour mode. get int GetPrintColourMode=2149(,) -val SCFIND_MATCHCASE=4 -val SCFIND_WHOLEWORD=2 val SCFIND_DOWN=1 +val SCFIND_WHOLEWORD=2 +val SCFIND_MATCHCASE=4 +val SCFIND_WORDSTART=0x00100000 +# SCFIND_REGEXP is not yet implemented. +val SCFIND_REGEXP=0x00200000 # Find some text in the document. fun position FindText=2150(int flags, findtext ft) |