aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/Scintilla.iface
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-01-26 11:12:10 +1100
committerNeil <nyamatongwe@gmail.com>2018-01-26 11:12:10 +1100
commit0a538f989da53970ddb3776778d87230c7929e6d (patch)
tree413ac49763c346e3300217764d5418dd4e1567a4 /include/Scintilla.iface
parent9a59853e7ebfa5118854260fe543ba3e09427563 (diff)
downloadscintilla-mirror-0a538f989da53970ddb3776778d87230c7929e6d.tar.gz
Backport: Add documentOption argument to SCI_CREATELOADER.
Backport of changeset 6441:92c8f0f1b3e6.
Diffstat (limited to 'include/Scintilla.iface')
-rw-r--r--include/Scintilla.iface7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 0af6c211a..5420a7c80 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1778,9 +1778,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.
@@ -2547,7 +2550,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)