diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-12-18 15:39:38 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-12-18 15:39:38 (GMT) |
commit | 620a7667ebb2ebd31a22349c20e66bad3a8980f9 (patch) | |
tree | d624b4ded7165d1c7703b2570f445ac661068f80 /Mac/Modules/win/winscan.py | |
parent | f30c3ad0d9eb8ab076ebfb1e8faa33ce68130649 (diff) | |
download | cpython-620a7667ebb2ebd31a22349c20e66bad3a8980f9.zip cpython-620a7667ebb2ebd31a22349c20e66bad3a8980f9.tar.gz cpython-620a7667ebb2ebd31a22349c20e66bad3a8980f9.tar.bz2 |
Updated to Universal Headers 3.4
Diffstat (limited to 'Mac/Modules/win/winscan.py')
-rw-r--r-- | Mac/Modules/win/winscan.py | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/Mac/Modules/win/winscan.py b/Mac/Modules/win/winscan.py index dcb62c3..82f4441 100644 --- a/Mac/Modules/win/winscan.py +++ b/Mac/Modules/win/winscan.py @@ -71,7 +71,7 @@ class MyScanner(Scanner): 'GetWindowGoAwayFlag', 'GetWindowSpareFlag', ]), - ('#if TARGET_API_MAC_CARBON', [ + ('#if !TARGET_API_MAC_OS8', [ 'IsWindowUpdatePending', 'FindWindowOfClass', 'GetFrontWindowOfClass', @@ -82,6 +82,28 @@ class MyScanner(Scanner): 'ScrollWindowRect', 'ChangeWindowAttributes', 'ReshapeCustomWindow', + 'EnableScreenUpdates', + 'DisableScreenUpdates', + 'GetAvailableWindowPositioningBounds', + 'CreateStandardWindowMenu', + 'GetSheetWindowParent', + 'HideSheetWindow', + 'ShowSheetWindow', + 'ConstrainWindowToScreen', + 'GetWindowGreatestAreaDevice', + 'CopyWindowTitleAsCFString', + 'SetWindowTitleWithCFString', + 'CopyWindowAlternateTitle', + 'SetWindowAlternateTitle', + 'GetWindowModality', + 'SetWindowModality', + 'SetWindowClass', + 'ReleaseWindow', + 'RetainWindow', + 'GetWindowRetainCount', + ]), + ('#if TARGET_API_MAC_OSX', [ + 'TransitionWindowAndParent', ])] def makeblacklisttypes(self): @@ -92,6 +114,7 @@ class MyScanner(Scanner): 'Collection', # For now, to be done later 'WindowDefSpec', # Too difficult for now 'WindowDefSpec_ptr', + 'EventRef', #TBD ] def makerepairinstructions(self): |