[Python-Dev] DLL in the system directory on Windows

Thomas Heller thomas.heller@ion-tof.com
Thu, 6 Apr 2000 17:40:38 +0200


> However, as we import data from Python16.dll rather then purely
> addresses, we can't use any of these interception solutions.  

What's wrong with:

#define PyClass_Type *(GetProcAddress(hdll, "PyClass_Type"))

I have only looked at PythonCOM15.dll, and it seems that
there are only references to a handfull of exported data items:

some Py*_Type, plus _PyNone_Struct, _PyTrue_Struct, _PyZero_Struct.

Thomas Heller