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
to prototype them, and then you use the prototype()
function to create them.
The problem I have with this is that I figured that I would create my callback function as such (I am not showing the structures that I have recreated, FLAC__Frame is a Structure):
write_callback_prototype = CFUNCTYPE(c_int, c_void_p,
POINTER(FLAC__Frame),
POINTER(c_int32), v_void_p)
The problem that I have is the implementation. FLAC__Frame is never instantiated by the programmer, it's only called from from the initialization function, and the processing functions.I have to write the callback function myself, but he problem is that I don't know how I would do this, so if anyone knows how I should do this, then some help would be greatly appreciated.