1
vote
2answers
3k views

Python ctypes and function pointers

This is related to my other question, but I felt like I should ask it in a new question. Basically FLAC uses function pointers for callbacks, and to implement callbacks with ctypes, you use CFUNCTYPE ...
0
votes
1answer
170 views

calling functions returned as pointers from other functions in ctypes

I'm trying to use ctypes to call a c function that was returned as a pointer from another function. It seems from the documentation that I can do this by declaring the function with CFUNCTYPE, and ...