diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1997-08-15 14:38:05 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1997-08-15 14:38:05 (GMT) |
commit | 8f0fab78cef6018beafa045df1c29fc89fa423d2 (patch) | |
tree | a669de8c7c57ed9ee592dd742fc3aa021fb39170 /Mac/Modules/win/winsupport.py | |
parent | eaf3c9bed79cc6d509ac40fadaae93e5fcdcc0b9 (diff) | |
download | cpython-8f0fab78cef6018beafa045df1c29fc89fa423d2.zip cpython-8f0fab78cef6018beafa045df1c29fc89fa423d2.tar.gz cpython-8f0fab78cef6018beafa045df1c29fc89fa423d2.tar.bz2 |
Added support for WCTabHandle, AuxWinHandle, PixPatHandle: no reason
for blacklisting them.
Diffstat (limited to 'Mac/Modules/win/winsupport.py')
-rw-r--r-- | Mac/Modules/win/winsupport.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Mac/Modules/win/winsupport.py b/Mac/Modules/win/winsupport.py index 9aed179..5b1b45e 100644 --- a/Mac/Modules/win/winsupport.py +++ b/Mac/Modules/win/winsupport.py @@ -34,6 +34,9 @@ GrafPtr = OpaqueByValueType("GrafPtr", "GrafObj") RgnHandle = OpaqueByValueType("RgnHandle", "ResObj") PicHandle = OpaqueByValueType("PicHandle", "ResObj") +WCTabHandle = OpaqueByValueType("WCTabHandle", "ResObj") +AuxWinHandle = OpaqueByValueType("AuxWinHandle", "ResObj") +PixPatHandle = OpaqueByValueType("PixPatHandle", "ResObj") includestuff = includestuff + """ #include <%s>""" % MACHEADERFILE + """ @@ -100,8 +103,8 @@ functions = [] methods = [] execfile(INPUTFILE) -# Add a manual routine for converting integer WindowPtr's (as returned by -# various event routines) to a WindowObject. +# Add manual routines for converting integer WindowPtr's (as returned by +# various event routines) and Dialog objects to a WindowObject. whichwin_body = """ long ptr; |