aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2008-04-27 07:49:54 +0000
committernyamatongwe <unknown>2008-04-27 07:49:54 +0000
commit8561402ec8aa9e46c9f3973410244d5391b275ed (patch)
treef417bd12ca0629aea1894848303450fd0d539757 /include
parentbcceb7d8295269d7b468d41f70413ea108abb192 (diff)
downloadscintilla-mirror-8561402ec8aa9e46c9f3973410244d5391b275ed.tar.gz
Implemented GetCharacterPointer feature.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface4
2 files changed, 5 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index ac32f40d8..90e7669ed 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -668,6 +668,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_SETPOSITIONCACHE 2514
#define SCI_GETPOSITIONCACHE 2515
#define SCI_COPYALLOWLINE 2519
+#define SCI_GETCHARACTERPOINTER 2520
#define SCI_STARTRECORD 3001
#define SCI_STOPRECORD 3002
#define SCI_SETLEXER 4001
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 946da891e..8641c6d91 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1800,6 +1800,10 @@ get int GetPositionCache=2515(,)
# Copy the selection, if selection empty copy the line with the caret
fun void CopyAllowLine=2519(,)
+# Compact the document buffer and return a read-only pointer to the
+# characters in the document.
+get int GetCharacterPointer=2520(,)
+
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)