summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/res/resedit.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1998-04-24 10:28:20 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1998-04-24 10:28:20 (GMT)
commite180d99280a7b7615d445a52efd63314f330e74b (patch)
tree806d4c6302ec0e534ecbf50b830339571d34bc52 /Mac/Modules/res/resedit.py
parent6a508aef7d024921b00a1c8fe635f19b0fa6a98f (diff)
downloadcpython-e180d99280a7b7615d445a52efd63314f330e74b.zip
cpython-e180d99280a7b7615d445a52efd63314f330e74b.tar.gz
cpython-e180d99280a7b7615d445a52efd63314f330e74b.tar.bz2
Grmpf, a lot more routines have gotten a "Mac" prefix for their
declaration, probably so the universal headers are useable on windows/unix too. Have to think of a more definite workaround later, for now we manually declare the old names in the *edit.py files.
Diffstat (limited to 'Mac/Modules/res/resedit.py')
-rw-r--r--Mac/Modules/res/resedit.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Mac/Modules/res/resedit.py b/Mac/Modules/res/resedit.py
index bffec5f..42966e4 100644
--- a/Mac/Modules/res/resedit.py
+++ b/Mac/Modules/res/resedit.py
@@ -39,3 +39,10 @@ def genresconverter(longname, shortname):
resmethods.append(genresconverter("Control", "Ctl"))
resmethods.append(genresconverter("Menu", "Menu"))
+
+# The definition of this one is MacLoadResource, so we do it by hand...
+
+f = ResMethod(void, 'LoadResource',
+ (Handle, 'theResource', InMode),
+)
+resmethods.append(f)