Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > by-pkgid > 1a52c27bfef57af124a82326839f87e6 > files > 112

python-pyrex-0.9.8.5-3mdv2010.0.noarch.rpm

#
#   Pyrex 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)