source: trunk/essentials/dev-lang/python/Mac/Modules/cf/pycfbridge.h@ 3506

Last change on this file since 3506 was 3225, checked in by bird, 19 years ago

Python 2.5

File size: 604 bytes
Line 
1extern PyObject *PyCF_CF2Python(CFTypeRef src);
2extern PyObject *PyCF_CF2Python_sequence(CFArrayRef src);
3extern PyObject *PyCF_CF2Python_mapping(CFTypeRef src);
4extern PyObject *PyCF_CF2Python_simple(CFTypeRef src);
5extern PyObject *PyCF_CF2Python_string(CFStringRef src);
6
7extern int PyCF_Python2CF(PyObject *src, CFTypeRef *dst);
8extern int PyCF_Python2CF_sequence(PyObject *src, CFArrayRef *dst);
9extern int PyCF_Python2CF_mapping(PyObject *src, CFDictionaryRef *dst);
10extern int PyCF_Python2CF_simple(PyObject *src, CFTypeRef *dst);
11extern int PyCF_Python2CF_string(PyObject *src, CFStringRef *dst);
Note: See TracBrowser for help on using the repository browser.