diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-11-14 10:48:54 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-11-14 10:48:54 (GMT) |
commit | 330f57699fd3e5c22c7f354ea0fb52deb47fa6a7 (patch) | |
tree | 826c2d514b845a443198b93d37a22424b656b47e /Mac/Modules/win/wingen.py | |
parent | a01a8f78cb76242cdc5f6f2ef67678c4172bb7d2 (diff) | |
download | cpython-330f57699fd3e5c22c7f354ea0fb52deb47fa6a7.zip cpython-330f57699fd3e5c22c7f354ea0fb52deb47fa6a7.tar.gz cpython-330f57699fd3e5c22c7f354ea0fb52deb47fa6a7.tar.bz2 |
- Added support for PicHandle
- Added (by hand, through winedit.py) support for WindowPeek accessor
functions that are currently declared as macros.
Diffstat (limited to 'Mac/Modules/win/wingen.py')
-rw-r--r-- | Mac/Modules/win/wingen.py | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/Mac/Modules/win/wingen.py b/Mac/Modules/win/wingen.py index 4735952..1d0a875 100644 --- a/Mac/Modules/win/wingen.py +++ b/Mac/Modules/win/wingen.py @@ -1,4 +1,4 @@ -# Generated from 'Sap:CodeWarrior6:Metrowerks C/C++:Headers:Universal Headers 2.0.1f:Windows.h' +# Generated from 'Sap:CodeWarrior7:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:Windows.h' f = Function(void, 'InitWindows', ) @@ -130,6 +130,17 @@ f = Method(long, 'GetWRefCon', ) methods.append(f) +f = Method(void, 'SetWindowPic', + (WindowRef, 'theWindow', InMode), + (PicHandle, 'pic', InMode), +) +methods.append(f) + +f = Method(PicHandle, 'GetWindowPic', + (WindowRef, 'theWindow', InMode), +) +methods.append(f) + f = Function(Boolean, 'CheckUpdate', (EventRecord, 'theEvent', OutMode), ) |