diff options
| author | mitchell <unknown> | 2018-05-05 23:10:51 -0400 |
|---|---|---|
| committer | mitchell <unknown> | 2018-05-05 23:10:51 -0400 |
| commit | 92676970616a5163636329e49c4cc825e46d6c7f (patch) | |
| tree | 9e2cc612919e2bc1ee50a31dc0fd8bb7652d94d7 /include/Scintilla.iface | |
| parent | 74d9510a055d6b9aa9d7679522f255db62de76d0 (diff) | |
| download | scintilla-mirror-92676970616a5163636329e49c4cc825e46d6c7f.tar.gz | |
Backport: Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes.
This option is provisional and experimental.
Backport of changesets 6696:9729ff36c5b1 and 6723:cffe824ab55e. Also added
'#include <cstddef>' to top of src/RESearch.cxx to fix 32-bit build error.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index d2bca177c..e7c6d4725 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1780,16 +1780,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(,) @@ -2551,7 +2555,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) |
