diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2001-09-04 22:19:18 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2001-09-04 22:19:18 (GMT) |
commit | 06d2e1af3579f6a698a84b81dfda0bacb6263f7d (patch) | |
tree | 81882308f84c962886979dc619cd2454f6874529 /Mac/Modules/cf | |
parent | d157b3795b24b0fca2f75bfee4ac09c64a7b2f40 (diff) | |
download | cpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.zip cpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.tar.gz cpython-06d2e1af3579f6a698a84b81dfda0bacb6263f7d.tar.bz2 |
Regenerated without default int return types.
Diffstat (limited to 'Mac/Modules/cf')
-rw-r--r-- | Mac/Modules/cf/_CFmodule.c | 21 | ||||
-rw-r--r-- | Mac/Modules/cf/cfsupport.py | 1 |
2 files changed, 12 insertions, 10 deletions
diff --git a/Mac/Modules/cf/_CFmodule.c b/Mac/Modules/cf/_CFmodule.c index 716e3fd..24083bf 100644 --- a/Mac/Modules/cf/_CFmodule.c +++ b/Mac/Modules/cf/_CFmodule.c @@ -55,6 +55,7 @@ PyObject *CFRange_New(CFRange *itself) return Py_BuildValue("ll", (long)itself->location, (long)itself->length); } +int CFRange_Convert(PyObject *v, CFRange *p_itself) { long location, length; @@ -102,7 +103,7 @@ PyObject *CFTypeRefObj_New(CFTypeRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFTypeRefObj_Convert(PyObject *v, CFTypeRef *p_itself) +int CFTypeRefObj_Convert(PyObject *v, CFTypeRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -325,7 +326,7 @@ PyObject *CFArrayRefObj_New(CFArrayRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFArrayRefObj_Convert(PyObject *v, CFArrayRef *p_itself) +int CFArrayRefObj_Convert(PyObject *v, CFArrayRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -475,7 +476,7 @@ PyObject *CFMutableArrayRefObj_New(CFMutableArrayRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFMutableArrayRefObj_Convert(PyObject *v, CFMutableArrayRef *p_itself) +int CFMutableArrayRefObj_Convert(PyObject *v, CFMutableArrayRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -628,7 +629,7 @@ PyObject *CFDictionaryRefObj_New(CFDictionaryRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFDictionaryRefObj_Convert(PyObject *v, CFDictionaryRef *p_itself) +int CFDictionaryRefObj_Convert(PyObject *v, CFDictionaryRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -760,7 +761,7 @@ PyObject *CFMutableDictionaryRefObj_New(CFMutableDictionaryRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFMutableDictionaryRefObj_Convert(PyObject *v, CFMutableDictionaryRef *p_itself) +int CFMutableDictionaryRefObj_Convert(PyObject *v, CFMutableDictionaryRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -876,7 +877,7 @@ PyObject *CFDataRefObj_New(CFDataRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFDataRefObj_Convert(PyObject *v, CFDataRef *p_itself) +int CFDataRefObj_Convert(PyObject *v, CFDataRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -1026,7 +1027,7 @@ PyObject *CFMutableDataRefObj_New(CFMutableDataRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFMutableDataRefObj_Convert(PyObject *v, CFMutableDataRef *p_itself) +int CFMutableDataRefObj_Convert(PyObject *v, CFMutableDataRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -1224,7 +1225,7 @@ PyObject *CFStringRefObj_New(CFStringRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFStringRefObj_Convert(PyObject *v, CFStringRef *p_itself) +int CFStringRefObj_Convert(PyObject *v, CFStringRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -1827,7 +1828,7 @@ PyObject *CFMutableStringRefObj_New(CFMutableStringRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFMutableStringRefObj_Convert(PyObject *v, CFMutableStringRef *p_itself) +int CFMutableStringRefObj_Convert(PyObject *v, CFMutableStringRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } @@ -2114,7 +2115,7 @@ PyObject *CFURLRefObj_New(CFURLRef itself) it->ob_freeit = CFRelease; return (PyObject *)it; } -CFURLRefObj_Convert(PyObject *v, CFURLRef *p_itself) +int CFURLRefObj_Convert(PyObject *v, CFURLRef *p_itself) { if (v == Py_None) { *p_itself = NULL; return 1; } diff --git a/Mac/Modules/cf/cfsupport.py b/Mac/Modules/cf/cfsupport.py index 1f3f357..f6fdaea 100644 --- a/Mac/Modules/cf/cfsupport.py +++ b/Mac/Modules/cf/cfsupport.py @@ -81,6 +81,7 @@ PyObject *CFRange_New(CFRange *itself) return Py_BuildValue("ll", (long)itself->location, (long)itself->length); } +int CFRange_Convert(PyObject *v, CFRange *p_itself) { long location, length; |