I am trying to link a C ++ library (pHash) with Python using Cython, but I am having problems with some types. The library functions use "unsigned long long", and I cannot find a way to declare variables and parameters with this type. I was looking for a list of types that I can use with cdef, but didn't find anything. Can someone point me to such a list (if one exists) or otherwise suggest a way to use 64-bit types in Cython? Thanks.
source share