Re: Running function from win32 dll

2009-11-30 Thread Terry Reedy
Nadav Chernin wrote: I want to run function from win32 dll. I used ctypes.windll.LoadLibrary to load the DLL. But I don’t know how to select function and run it. Which part of the Lib manual chapter did you not understand? -- http://mail.python.org/mailman/listinfo/python-list

Running function from win32 dll

2009-11-30 Thread Nadav Chernin
Hi all, I want to run function from win32 dll. I used ctypes.windll.LoadLibrary to load the DLL. But I don't know how to select function and run it. Thank you, Nadav -- http://mail.python.org/mailman/listinfo/python-list

Running function from Win32 dll

2009-11-30 Thread Nadav Chernin
Hi all, I want to run function from win32 dll. I used ctypes.windll.LoadLibrary to load the DLL. But I don't know how to select function and run it. Dll example attached (pylab.dll). It includes 2 functions: double Add(double a,double b) - adds 2 double numbers double Rand