Hi,
I have a dll that I'd like to write a simple replacement for in python.
Is this possible? Is there an example somewhere of a dll written in python?
The example could be for something as simple as a single dll export
implementing the following GetApiVersion call...
typedef enum _Status
{
STATUS_SUCCESS = 0x00000000,
STATUS_FAILED = 0x00000001
}Status;
typedef struct _ApiVersionInfo
{
DWORD dwMajor;
DWORD dwMinor;
DWORD dwDetailed
}ApiVersionInfo;
Status GetApiVersion(ApiVersionInfo *pstVersion);
My googling turned up this old post from 5 years ago, but nothing more
recent.
http://mail.python.org/pipermail/python-list/2001-November/074600.html
Thank you very much for any feedback.
Best Regards,
Darren
_______________________________________________
Python-win32 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-win32