aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2007-06-02 05:18:13 +0000
committernyamatongwe <devnull@localhost>2007-06-02 05:18:13 +0000
commit54ff7790908e2b31f976ba74ca353bc4507ea70d (patch)
tree22d32a8aeccfda9902240bfca1ffad692136f45c /include/Scintilla.iface
parent739e6e3218041c656f62685fd2e19988e37e294f (diff)
downloadscintilla-mirror-54ff7790908e2b31f976ba74ca353bc4507ea70d.tar.gz
Addition of PositionCache module which adds cacing of string
to position information and segments long pieces of text so they can be handled more efficiently.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 7d21f41b3..b932a33f6 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1775,6 +1775,12 @@ fun int IndicatorStart=2508(int indicator, int position)
# Where does a particular indicator end?
fun int IndicatorEnd=2509(int indicator, int position)
+# Set number of entries in position cache
+set void SetPositionCache=2514(int size,)
+
+# How many entries are allocated to the position cache?
+get int GetPositionCache=2515(,)
+
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)