Re: Creating Python wrapper for DLL

2005-06-29 Thread Tim
Thanks guys, I'll take a look! -- http://mail.python.org/mailman/listinfo/python-list

Re: Creating Python wrapper for DLL

2005-06-28 Thread renwei
use ctype: http://starship.python.net/crew/theller/ctypes/ "Tim" <[EMAIL PROTECTED]> news:[EMAIL PROTECTED] > I have a DLL, and a C .h file that exports a bunch of functions from > the DLL. I would like to create a Python extension module for these > functions. > > I have read the "Extendin

Re: Creating Python wrapper for DLL

2005-06-28 Thread Lonnie Princehouse
ctypes! http://starship.python.net/crew/theller/ctypes/ -- http://mail.python.org/mailman/listinfo/python-list

Creating Python wrapper for DLL

2005-06-28 Thread Tim
I have a DLL, and a C .h file that exports a bunch of functions from the DLL. I would like to create a Python extension module for these functions. I have read the "Extending and Embedding" documentation in the Python 2.4 release. I understand how to extend C code for use in Python if I have acc