diff options
| author | Neil <nyamatongwe@gmail.com> | 2018-01-26 11:12:10 +1100 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2018-01-26 11:12:10 +1100 |
| commit | 4a5e9654ce0c4a6cd6c1aff452f8f9344a9849a6 (patch) | |
| tree | 9d2780782684b9bcc794c1100dd0a5b3010d2d97 /include/Scintilla.iface | |
| parent | 365542e73ee97316f4eaf1b3edc0cb6109c8a850 (diff) | |
| download | scintilla-mirror-4a5e9654ce0c4a6cd6c1aff452f8f9344a9849a6.tar.gz | |
Add documentOption argument to SCI_CREATELOADER.
Diffstat (limited to 'include/Scintilla.iface')
| -rw-r--r-- | include/Scintilla.iface | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface index bb00ed634..68e528de1 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1771,9 +1771,12 @@ set void SetZoom=2373(int zoomInPoints,) # Retrieve the zoom level. get int GetZoom=2374(,) +enu DocumentOption=SC_DOCUMENTOPTION_ +val SC_DOCUMENTOPTION_DEFAULT=0 + # Create a new document object. # Starts with reference count of 1 and not selected into editor. -fun int CreateDocument=2375(,) +fun int CreateDocument=2375(int bytes, int documentOption) # Extend life of document. fun void AddRefDocument=2376(, int doc) # Release a reference to the document, deleting document if it fades to black. @@ -2540,7 +2543,7 @@ set void SetTechnology=2630(int technology,) get int GetTechnology=2631(,) # Create an ILoader*. -fun int CreateLoader=2632(int bytes,) +fun int CreateLoader=2632(int bytes, int documentOption) # On OS X, show a find indicator. fun void FindIndicatorShow=2640(position start, position end) |
