aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authornyamatongwe <unknown>2009-04-04 23:00:39 +0000
committernyamatongwe <unknown>2009-04-04 23:00:39 +0000
commit89db940cd0d6f3a2da913bc0098c777c5c7c50ee (patch)
tree333fb21b39eee1201632805511bdc539ea23f9dc /include/Scintilla.iface
parent977371ca0595af895bf255b135292e12f80eff01 (diff)
downloadscintilla-mirror-89db940cd0d6f3a2da913bc0098c777c5c7c50ee.tar.gz
Added AddUndoAction call for adding application actions into undo stack.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index ed31a803e..426a2c886 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1832,6 +1832,9 @@ get int GetExtraDescent=2528(,)
# Which symbol was defined for markerNumber with MarkerDefine
fun int MarkerSymbolDefined=2529(int markerNumber,)
+# Add a container action to the undo stack
+fun void AddUndoAction=2560(int token,)
+
# Start notifying the container of all key presses and commands.
fun void StartRecord=3001(,)
@@ -1897,7 +1900,9 @@ val SC_MULTILINEUNDOREDO=0x1000
val SC_STARTACTION=0x2000
val SC_MOD_CHANGEINDICATOR=0x4000
val SC_MOD_CHANGELINESTATE=0x8000
-val SC_MODEVENTMASKALL=0xFFFF
+
+val SC_MOD_CONTAINER=0x40000
+val SC_MODEVENTMASKALL=0x7FFFF
# For compatibility, these go through the COMMAND notification rather than NOTIFY
# and should have had exactly the same values as the EN_* constants.