diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-02-24 13:56:59 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-02-24 13:56:59 (GMT) |
commit | 4a8c54e6d91549ae140970862d661dacf1112e31 (patch) | |
tree | 23703ecb8562e7301dd487ecb310bf4ad74cf802 /Mac/Modules/qt/qtscan.py | |
parent | 6a528149dbed46723b8fc48c7b7cd21f9a727dff (diff) | |
download | cpython-4a8c54e6d91549ae140970862d661dacf1112e31.zip cpython-4a8c54e6d91549ae140970862d661dacf1112e31.tar.gz cpython-4a8c54e6d91549ae140970862d661dacf1112e31.tar.bz2 |
- Changed GestaltEqu.h to Gestalt.h
- Changed FragLoader.h to CodeFragments.h
- Removed Desk.h
- Regenerated bgen modules from new universal headers
- Changed some of the s# in PyArg_ParseTuple to m# (unfortunately:
this should have been a different commit)
Diffstat (limited to 'Mac/Modules/qt/qtscan.py')
-rw-r--r-- | Mac/Modules/qt/qtscan.py | 36 |
1 files changed, 34 insertions, 2 deletions
diff --git a/Mac/Modules/qt/qtscan.py b/Mac/Modules/qt/qtscan.py index 7fba936..6b26bcb 100644 --- a/Mac/Modules/qt/qtscan.py +++ b/Mac/Modules/qt/qtscan.py @@ -56,6 +56,34 @@ class MyScanner(Scanner): "AddTESample", "AddHiliteSample", "HiliteTextSample", + # Missing in CW11 quicktime library + "SpriteMediaGetDisplayedSampleNumber", + "SpriteMediaGetIndImageDescription", + "SpriteMediaCountImages", + "SpriteMediaCountSprites", + "SpriteMediaHitTestSprites", + "SpriteMediaGetProperty", + "SpriteMediaSetProperty", + "TextMediaSetTextSampleData", + "TextMediaHiliteTextSample", + "TextMediaFindNextText", + "TextMediaAddHiliteSample", + "TextMediaAddTESample", + "TextMediaAddTextSample", + "VideoMediaGetStatistics", + "VideoMediaResetStatistics", + "EndFullScreen", + "NewMovieFromDataRef", + "MCPtInController", + "MCRemoveAMovie", + "MCRemoveAllMovies", + "MCInvalidate", + "InvalidateMovieRegion", + "GetMovieCompositeBufferFlags", + "SetMovieCompositeBufferFlags", + "SetTrackSoundLocalizationSettings", + "GetTrackSoundLocalizationSettings", + "GetMovieNaturalBoundsRect", ] def makeblacklisttypes(self): @@ -91,6 +119,9 @@ class MyScanner(Scanner): "MCActionFilterWithRefConUPP", "GetMovieUPP", "ModalFilterUPP", + "QTAtomContainer", + "SpriteWorld", + "Sprite", ] def makerepairinstructions(self): @@ -105,8 +136,9 @@ class MyScanner(Scanner): ([('short', 'resId', 'OutMode'), ('StringPtr', 'resName', 'InMode')], [('dummyshortptr', 'resId', 'InMode'), ('dummyStringPtr', 'resName', 'InMode')]), - # MCDoAction - ([('void', 'params', 'OutMode')], [('mcactionparams', 'params', 'InMode')]), + # MCDoAction and more + ([('void', '*', 'OutMode')], [('mcactionparams', '*', 'InMode')]), + ] if __name__ == "__main__": |