From 5e886f24d13438063a58e06e74e6c371cf8311e7 Mon Sep 17 00:00:00 2001 From: Zufu Liu Date: Wed, 15 Feb 2023 12:01:42 +1100 Subject: Feature [feature-requests:#1477] More typesafe bindings of *Full APIs in ScintillaCall. --- scripts/ScintillaAPIFacer.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scripts/ScintillaAPIFacer.py') diff --git a/scripts/ScintillaAPIFacer.py b/scripts/ScintillaAPIFacer.py index e30f48380..f26389abb 100644 --- a/scripts/ScintillaAPIFacer.py +++ b/scripts/ScintillaAPIFacer.py @@ -19,9 +19,9 @@ typeAliases = { "colour": "Colour", "colouralpha": "ColourAlpha", "findtext": "void *", - "findtextfull": "void *", + "findtextfull": "TextToFindFull *", "formatrange": "void *", - "formatrangefull": "void *", + "formatrangefull": "RangeToFormatFull *", "int": "int", "keymod": "int", "line": "Line", @@ -30,7 +30,7 @@ typeAliases = { "string": "const char *", "stringresult": "char *", "textrange": "void *", - "textrangefull": "void *", + "textrangefull": "TextRangeFull *", } basicTypes = [ -- cgit v1.2.3