I need to pass a callback function that is CFuncType (ctypes.CFUNCTYPE or ctypes.PYFUNCTYPE…).
How can I cast a python function to CFuncType or how can I create a CFuncType function in python.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I forgot how awesome ctypes is:
Below is Copied from http://docs.python.org/library/ctypes.html
So our callback function receives pointers to integers, and must return an integer. First we create the type for the callback function:
For the first implementation of the callback function, we simply print the arguments we get, and return 0 (incremental development ;-):
Create the C callable callback: