aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-01-10 11:18:07 +0000
committernyamatongwe <unknown>2003-01-10 11:18:07 +0000
commitdd670596af16c82cc3ae5433994067f05608cb77 (patch)
tree6f2ce52215399586d42771811f5e25ed26985848
parent0cf71e4a074cb4df980287fb793e610d67e49919 (diff)
downloadscintilla-mirror-dd670596af16c82cc3ae5433994067f05608cb77.tar.gz
Added method to clear all registered images.
-rw-r--r--include/Scintilla.h1
-rw-r--r--include/Scintilla.iface3
2 files changed, 4 insertions, 0 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h
index fbaa46516..74efc3f78 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -244,6 +244,7 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_AUTOCSETDROPRESTOFWORD 2270
#define SCI_AUTOCGETDROPRESTOFWORD 2271
#define SCI_REGISTERIMAGE 2405
+#define SCI_CLEARREGISTEREDIMAGES 2408
#define SCI_SETINDENT 2122
#define SCI_GETINDENT 2123
#define SCI_SETUSETABS 2124
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 7775cebab..b62707b34 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -585,6 +585,9 @@ get bool AutoCGetDropRestOfWord=2271(,)
# Register an XPM image for use in autocompletion lists.
fun void RegisterImage=2405(int type, int xpmData)
+# Clear all the registered XPM images.
+fun void ClearRegisteredImages=2408(,)
+
# Set the number of spaces used for one level of indentation.
set void SetIndent=2122(int indentSize,)