Call C functions from Python

Fredrik Lundh fredrik at pythonware.com
Wed Oct 5 10:53:07 EDT 2005


"Java and Swing" wrote:

>>> from ctypes import *
>>> myapp = cdll.LoadLibrary("c:\\myapp.dll")
>>> dumpbin /exports myapp.pyd
>
> i get, SyntaxError: invalid syntax with it pointing at the first "p" in
> myapp.pyd.

dumpbin is a command-line utillity, usually included in the compiler
toolsuite...

</F> 






More information about the Python-list mailing list