diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-04-09 15:53:46 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-04-09 15:53:46 (GMT) |
commit | e0cf87b20df201400315a36dde232ec2152908cb (patch) | |
tree | 218c611ff1190fed7f0640e168371add8c58dfe9 /Mac/Modules/qt/qtsupport.py | |
parent | 3ccd2f153f2c8f63b08b368ebbed21c5e29be505 (diff) | |
download | cpython-e0cf87b20df201400315a36dde232ec2152908cb.zip cpython-e0cf87b20df201400315a36dde232ec2152908cb.tar.gz cpython-e0cf87b20df201400315a36dde232ec2152908cb.tar.bz2 |
Enabled resID input/output parameter to NewMovieFromFile. This changes
the Python interface, unfortunately.
Added a few calls that were blacklisted for no apparent reason.
Diffstat (limited to 'Mac/Modules/qt/qtsupport.py')
-rw-r--r-- | Mac/Modules/qt/qtsupport.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Mac/Modules/qt/qtsupport.py b/Mac/Modules/qt/qtsupport.py index 5e91913..7cda107 100644 --- a/Mac/Modules/qt/qtsupport.py +++ b/Mac/Modules/qt/qtsupport.py @@ -71,6 +71,8 @@ PixMapHandle = OpaqueByValueType("PixMapHandle", "ResObj") SampleDescriptionHandle = OpaqueByValueType("SampleDescriptionHandle", "ResObj") ImageDescriptionHandle = OpaqueByValueType("ImageDescriptionHandle", "ResObj") TEHandle = OpaqueByValueType("TEHandle", "ResObj") +CGrafPtr = OpaqueByValueType("CGrafPtr", "GrafObj") +GDHandle = OpaqueByValueType("GDHandle", "ResObj") # Silly Apple, passing an OStype by reference... OSType_ptr = OpaqueType("OSType", "PyMac_BuildOSType", "PyMac_GetOSType") |