diff options
author | Zufu Liu <unknown> | 2023-02-15 12:01:42 +1100 |
---|---|---|
committer | Zufu Liu <unknown> | 2023-02-15 12:01:42 +1100 |
commit | 5e886f24d13438063a58e06e74e6c371cf8311e7 (patch) | |
tree | 120ef5cb8e1d9a0ea503914fc9b147725b95ed76 /scripts | |
parent | 00fe0093156d19a55d5eefcf67dbbe8a73640933 (diff) | |
download | scintilla-mirror-5e886f24d13438063a58e06e74e6c371cf8311e7.tar.gz |
Feature [feature-requests:#1477] More typesafe bindings of *Full APIs in
ScintillaCall.
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/ScintillaAPIFacer.py | 6 |
1 files changed, 3 insertions, 3 deletions
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 = [ |