I have a library (PythonXX.dll) that I need to conditionally load at run-time. To support it, there are extensive include files and over a thousand calls to it.
The good news is that I probably only use about 20-30 of them, but it is still a pain to set up all those GetProcAddress() calls. I also want/need to use the routines with their native names (e.g., PyNumber_Long, not MyPyNumber_Long).
Is there a better or more preferred way to do this?