you can download the files at http://www.newsmth.net/att.php?s.284.38015.655.zip the dll and exe are created by freebasic
import ctypes
mydll=ctypes.windll.LoadLibrary("mydll.dll")
_TwoTimes=getattr(mydll,'[EMAIL PROTECTED]')
_TwoTimes.argtypes=[ctypes.c_double]
def TwoTimes(i):
return _TwoTimes(i)
in fact, twotimes function return double*2, but when I use
print TwoTimes(10)
in python, I get 2226880
thanx
-- http://mail.python.org/mailman/listinfo/python-list
