summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/cf/pycfbridge.h
blob: 3377d5dcb1c257fcd7858daa0c38a1de1e862a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
extern PyObject *PyCF_CF2Python(CFTypeRef src);
extern PyObject *PyCF_CF2Python_sequence(CFArrayRef src);
extern PyObject *PyCF_CF2Python_mapping(CFTypeRef src);
extern PyObject *PyCF_CF2Python_simple(CFTypeRef src);
extern PyObject *PyCF_CF2Python_string(CFStringRef src);

extern int PyCF_Python2CF(PyObject *src, CFTypeRef *dst);
extern int PyCF_Python2CF_sequence(PyObject *src, CFArrayRef *dst);
extern int PyCF_Python2CF_mapping(PyObject *src, CFDictionaryRef *dst);
extern int PyCF_Python2CF_simple(PyObject *src, CFTypeRef *dst);
extern int PyCF_Python2CF_string(PyObject *src, CFStringRef *dst);