ysystudio wrote:
> I have a windows dll1.dll with a export function:
>  
> int f1(char filename,char **buf,int *bufLen)
> {
> int len;
> //got the length of file anyway,such as 100
> len = 100;//len = getLen(filename);
> *buf = (char*)calloc(100);
> *bufLen = len;
> return 0;
> }
>  
> then how can I call the f1 function with python.
> thanks for your response.


Have a look at ctypes (which is included in python since 2.5):

http://python.net/crew/theller/ctypes/

Christian

_______________________________________________
python-win32 mailing list
python-win32@python.org
http://mail.python.org/mailman/listinfo/python-win32

Reply via email to