diff options
| author | nyamatongwe <devnull@localhost> | 2008-04-27 07:49:54 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2008-04-27 07:49:54 +0000 |
| commit | 05afdfab73062917988db56f56c09695bef7b0cf (patch) | |
| tree | f417bd12ca0629aea1894848303450fd0d539757 /include | |
| parent | 3be48e12ea69c4443d7296ad6e00bb77bf9d6f04 (diff) | |
| download | scintilla-mirror-05afdfab73062917988db56f56c09695bef7b0cf.tar.gz | |
Implemented GetCharacterPointer feature.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 4 |
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(,) |
