diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-07-17 11:40:10 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-07-17 11:40:10 (GMT) |
commit | 5ae5fdf9011a1e477dd3cfd4e666c0ef1e1ec816 (patch) | |
tree | 5ca2fe2ed1ab219f85bb104c0ab1be5385bc1565 /Mac/Modules/ae/aegen.py | |
parent | 74335681722edeb98a0449552532bbe8728d1999 (diff) | |
download | cpython-5ae5fdf9011a1e477dd3cfd4e666c0ef1e1ec816.zip cpython-5ae5fdf9011a1e477dd3cfd4e666c0ef1e1ec816.tar.gz cpython-5ae5fdf9011a1e477dd3cfd4e666c0ef1e1ec816.tar.bz2 |
Generated anew after fixing aescan.py
Diffstat (limited to 'Mac/Modules/ae/aegen.py')
-rw-r--r-- | Mac/Modules/ae/aegen.py | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Mac/Modules/ae/aegen.py b/Mac/Modules/ae/aegen.py index 070f8a0..1769003 100644 --- a/Mac/Modules/ae/aegen.py +++ b/Mac/Modules/ae/aegen.py @@ -41,20 +41,20 @@ f = AEMethod(OSErr, 'AECountItems', ) aedescmethods.append(f) -f = AEFunction(OSErr, 'AEPutPtr', - (AEDescList, 'theAEDescList', OutMode), +f = AEMethod(OSErr, 'AEPutPtr', + (AEDescList_ptr, 'theAEDescList', InMode), (long, 'index', InMode), (DescType, 'typeCode', InMode), (InBuffer, 'dataPtr', InMode), ) -functions.append(f) +aedescmethods.append(f) -f = AEFunction(OSErr, 'AEPutDesc', - (AEDescList, 'theAEDescList', OutMode), +f = AEMethod(OSErr, 'AEPutDesc', + (AEDescList_ptr, 'theAEDescList', InMode), (long, 'index', InMode), (AEDesc_ptr, 'theAEDesc', InMode), ) -functions.append(f) +aedescmethods.append(f) f = AEMethod(OSErr, 'AEGetNthPtr', (AEDescList_ptr, 'theAEDescList', InMode), @@ -83,11 +83,11 @@ f = AEMethod(OSErr, 'AESizeOfNthItem', ) aedescmethods.append(f) -f = AEFunction(OSErr, 'AEDeleteItem', - (AEDescList, 'theAEDescList', OutMode), +f = AEMethod(OSErr, 'AEDeleteItem', + (AEDescList_ptr, 'theAEDescList', InMode), (long, 'index', InMode), ) -functions.append(f) +aedescmethods.append(f) f = AEMethod(OSErr, 'AEPutParamPtr', (AppleEvent_ptr, 'theAppleEvent', InMode), |