From 24effbe84b6df2458784613b7eddb39af8c191bf Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Thu, 4 May 2000 11:35:09 +0000 Subject: Patched keypad patch to not apply when Ctrl pressed so magnification works again. --- include/Scintilla.iface | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'include') 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(,) -- cgit v1.2.3