I'm using an API where I need to pass in a callback function, but it doesn't support any user defined parameter to pass an object pointer.
What are my options of recovering an object from my static / extern "C" callback function?
I'm using SetAbortProc(), which takes an HDC and passes through to the AbortProc() callback. Unfortunately, I don't see any way to associate further data with the HDC.
Solutions I can think of:
- Use a global Cls *my_abort_object
Should work as only one print job can be active at a time. It seems a bit sloppy, but maybe that's just me? - Use a global std::map<HDC, Cls*>
Probably useless for me, as only one print job can be active. The global pointer solution is easier and doesn't have drawbacks in this case. - Use a singleton which encapsulates the whole aborting thing
Probably the sanest approach without too much work. - Use ATL style thunks
(This is basically runtime-generated code that callsreal_callback(HARDCODED_OBJ_PTR, cb_arg1, cb_arg2, ...);That code passed in as callback function).
Would be very nice but hard to do on your own, problematic with data execution prevention, etc. Something a framework can do which you can't easily emulate.
I'm currently leaning towards the singleton solution as it seems the cleanest without too much overhead. I'd appreciate any suggestions!
Extra Info: C++ Win32 programming using MSVC Espress 2010