Your IP : 216.73.216.213


Current Path : /proc/242857/root/opt/alt/python27/share/doc/alt-python27-Cython/Demos/callback/
Upload File :
Current File : //proc/242857/root/opt/alt/python27/share/doc/alt-python27-Cython/Demos/callback/cheese.pyx

#
#   Cython wrapper for the cheesefinder API
#

cdef extern from "cheesefinder.h":
    ctypedef void (*cheesefunc)(char *name, void *user_data)
    void find_cheeses(cheesefunc user_func, void *user_data)

def find(f):
    find_cheeses(callback, <void*>f)
    
cdef void callback(char *name, void *f):
    (<object>f)(name)