diff options
| author | nyamatongwe <devnull@localhost> | 2003-01-10 11:18:07 +0000 | 
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2003-01-10 11:18:07 +0000 | 
| commit | 2aba211fb17a4c355e86f889e8194f730ffe41a6 (patch) | |
| tree | 6f2ce52215399586d42771811f5e25ed26985848 /include | |
| parent | 41411dd6d37782b88bb19b7815e3f2a90e5e00cf (diff) | |
| download | scintilla-mirror-2aba211fb17a4c355e86f889e8194f730ffe41a6.tar.gz | |
Added method to clear all registered images.
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 1 | ||||
| -rw-r--r-- | include/Scintilla.iface | 3 | 
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,) | 
