aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-05-04 11:35:09 +0000
committernyamatongwe <unknown>2000-05-04 11:35:09 +0000
commit24effbe84b6df2458784613b7eddb39af8c191bf (patch)
tree8574ccdab794d82fc10bd86e43938419cffe8057 /include
parent6fd6af274fbbedfc533080ba9c0df74336c42769 (diff)
downloadscintilla-mirror-24effbe84b6df2458784613b7eddb39af8c191bf.tar.gz
Patched keypad patch to not apply when Ctrl pressed so magnification works again.
Diffstat (limited to 'include')
-rw-r--r--include/Scintilla.iface15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 32297f772..e7f61202b 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -30,7 +30,8 @@
## bool -> integer, 1=true, 0=false
## position -> integer position in a document
## colour -> colour integer containing red, green and blue bytes.
-## string -> pointer to character
+## string -> pointer to const character
+## stringresult -> pointer to character
## cells -> pointer to array of cells, each cell containing a style byte and character byte
## textrange -> complex structure
## keymod -> integer containing key in low half and modifiers in high half
@@ -49,13 +50,13 @@ val SCI_OPTIONAL_START=3000
val SCI_LEXER_START=4000
# Add text to the document
-fun void AddText=2001(int length, string s)
+fun void AddText=2001(int length, string text)
# Add array of cells to document
-fun void AddStyledText=2002(int length, cells s)
+fun void AddStyledText=2002(int length, cells c)
# Insert string at a position
-fun void InsertText=2003(position pos, string s)
+fun void InsertText=2003(position pos, string text)
# Delete all text in the document
fun void ClearAll=2004(,)
@@ -123,7 +124,7 @@ fun void SetAnchor=2026(position posAnchor,)
# Retrieve the text of the line containing the caret.
# Returns the index of the caret on the line.
-fun int GetCurLine=2027(,string text)
+fun int GetCurLine=2027(,stringresult text)
# Retrieve the position of the last correctly styled character.
get position GetEndStyled=2028(,)
@@ -951,7 +952,7 @@ fun int EM_GetSel=176(,)
# Retrieve the selected text.
# Return the length of the text.
-fun int EM_GetSelText=1086(,string text)
+fun int EM_GetSelText=1086(,stringresult text)
# Retrieve a range of text.
# Return the length of the text.
@@ -1012,7 +1013,7 @@ fun void WM_Cut=768(,)
# Retrieve all the text in the document.
# Returns number of characters retrieved.
-fun int WM_GetText=13(int length, string text)
+fun int WM_GetText=13(int length, stringresult text)
# Retrieve the number of characters in the document.
fun void WM_GetTextLength=14(,)