diff options
Diffstat (limited to 'Mac/Modules/qt/qtsupport.py')
-rw-r--r-- | Mac/Modules/qt/qtsupport.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Mac/Modules/qt/qtsupport.py b/Mac/Modules/qt/qtsupport.py index 4eb906e..bb37380 100644 --- a/Mac/Modules/qt/qtsupport.py +++ b/Mac/Modules/qt/qtsupport.py @@ -121,6 +121,13 @@ IdleManager = OpaqueByValueType('IdleManager', 'IdleManagerObj') Component = OpaqueByValueType('Component', 'CmpObj') MediaHandlerComponent = OpaqueByValueType('MediaHandlerComponent', 'CmpObj') DataHandlerComponent = OpaqueByValueType('DataHandlerComponent', 'CmpObj') +CompressorComponent = OpaqueByValueType('CompressorComponent', 'CmpObj') +DecompressorComponent = OpaqueByValueType('DecompressorComponent', 'CmpObj') +CodecComponent = OpaqueByValueType('CodecComponent', 'CmpObj') +GraphicsImportComponent = OpaqueByValueType('GraphicsImportComponent', 'CmpObj') +GraphicsExportComponent = OpaqueByValueType('GraphicsExportComponent', 'CmpObj') +ImageTranscoderComponent = OpaqueByValueType('ImageTranscoderComponent', 'CmpObj') + ComponentInstance = OpaqueByValueType('ComponentInstance', 'CmpInstObj') MediaHandler = OpaqueByValueType('MediaHandler', 'CmpInstObj') @@ -172,6 +179,7 @@ MCInterfaceElement = Type("MCInterfaceElement", "l") CodecType = OSTypeType("CodecType") GWorldPtr = OpaqueByValueType("GWorldPtr", "GWorldObj") QTFloatSingle = Type("QTFloatSingle", "f") +CodecQ = Type("CodecQ", "l") # Could-not-be-bothered-types (NewMovieFromFile) dummyshortptr = FakeType('(short *)0') |