diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-09 22:10:16 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-01-09 22:10:16 (GMT) |
commit | a9e3db354def12649afc4923fef431744ffbbab6 (patch) | |
tree | 2a7981e679d16184480a864fe9f6a0544cfd239b /Mac/Modules/ctl/ctlscan.py | |
parent | 0d202b740399241d332c21960611943a0789190a (diff) | |
download | cpython-a9e3db354def12649afc4923fef431744ffbbab6.zip cpython-a9e3db354def12649afc4923fef431744ffbbab6.tar.gz cpython-a9e3db354def12649afc4923fef431744ffbbab6.tar.bz2 |
Carbon defines {Get,Set}ControlDataHandle, so unfortunately our variants on {Get,Set}ControlData have gotten an underscore: GetControlData_Handle, etc. This is an incompatible change:-(
Diffstat (limited to 'Mac/Modules/ctl/ctlscan.py')
-rw-r--r-- | Mac/Modules/ctl/ctlscan.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Mac/Modules/ctl/ctlscan.py b/Mac/Modules/ctl/ctlscan.py index 3af28ca..1a502d6 100644 --- a/Mac/Modules/ctl/ctlscan.py +++ b/Mac/Modules/ctl/ctlscan.py @@ -162,6 +162,9 @@ class MyScanner(Scanner): [("ExistingControlHandle", "*", "*")]), ([("ControlRef", "*", "OutMode")], # Ditto, for Universal Headers [("ExistingControlHandle", "*", "*")]), + + ([("Rect_ptr", "*", "ReturnMode")], # GetControlBounds + [("void", "*", "ReturnMode")]), ] if __name__ == "__main__": |