aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-09-04 13:12:01 +0000
committernyamatongwe <unknown>2000-09-04 13:12:01 +0000
commit90e1b590ae736c53fb37e22ea90c8f07064403e0 (patch)
tree105694b92861b678ee50da068da5501fb33758ae /include/Scintilla.h
parent4438c10faf264c4b7cff5c29acabe94cce37e32f (diff)
downloadscintilla-mirror-90e1b590ae736c53fb37e22ea90c8f07064403e0.tar.gz
Added SCFIND_WORDSTART.
Diffstat (limited to 'include/Scintilla.h')
-rw-r--r--include/Scintilla.h6
1 files changed, 4 insertions, 2 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