diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/Scintilla.h | 4 | ||||
| -rw-r--r-- | include/Scintilla.iface | 10 | 
2 files changed, 10 insertions, 4 deletions
diff --git a/include/Scintilla.h b/include/Scintilla.h index 29a723e26..3ec70a380 100644 --- a/include/Scintilla.h +++ b/include/Scintilla.h @@ -685,10 +685,12 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,  #define SCI_SETZOOM 2373  #define SCI_GETZOOM 2374  #define SC_DOCUMENTOPTION_DEFAULT 0 -#define SC_DOCUMENTOPTION_STYLES_NONE 1 +#define SC_DOCUMENTOPTION_STYLES_NONE 0x1 +#define SC_DOCUMENTOPTION_TEXT_LARGE 0x100  #define SCI_CREATEDOCUMENT 2375  #define SCI_ADDREFDOCUMENT 2376  #define SCI_RELEASEDOCUMENT 2377 +#define SCI_GETDOCUMENTOPTIONS 2379  #define SCI_GETMODEVENTMASK 2378  #define SCI_SETFOCUS 2380  #define SCI_GETFOCUS 2381 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 51c3f2e81..2c361b5f0 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1773,16 +1773,20 @@ get int GetZoom=2374(,)  enu DocumentOption=SC_DOCUMENTOPTION_  val SC_DOCUMENTOPTION_DEFAULT=0 -val SC_DOCUMENTOPTION_STYLES_NONE=1 +val SC_DOCUMENTOPTION_STYLES_NONE=0x1 +val SC_DOCUMENTOPTION_TEXT_LARGE=0x100  # Create a new document object.  # Starts with reference count of 1 and not selected into editor. -fun int CreateDocument=2375(int bytes, int documentOption) +fun int CreateDocument=2375(int bytes, int documentOptions)  # Extend life of document.  fun void AddRefDocument=2376(, int doc)  # Release a reference to the document, deleting document if it fades to black.  fun void ReleaseDocument=2377(, int doc) +# Get which document options are set. +get int GetDocumentOptions=2379(,) +  # Get which document modification events are sent to the container.  get int GetModEventMask=2378(,) @@ -2544,7 +2548,7 @@ set void SetTechnology=2630(int technology,)  get int GetTechnology=2631(,)  # Create an ILoader*. -fun int CreateLoader=2632(int bytes, int documentOption) +fun int CreateLoader=2632(int bytes, int documentOptions)  # On OS X, show a find indicator.  fun void FindIndicatorShow=2640(position start, position end)  | 
