Re: Calling C/C++ functions in a python script

2006-05-11 Thread Ravi Teja
You are working with the debug configuration, use release instead and python24.lib will suffice. http://news.hping.org/comp.lang.python.archive/6741.html -- http://mail.python.org/mailman/listinfo/python-list

Re: Calling C/C++ functions in a python script

2006-05-11 Thread Carl
[EMAIL PROTECTED] wrote: > > Ravi Teja a écrit : > >> >> For more advanced needs, take a look at some of the extending options >> available. >> http://www.suttoncourtenay.org.uk/duncan/accu/integratingpython.html > > Thanks for your answer. It is just what I'm trying to do. > Unfortunately, app

Re: Calling C/C++ functions in a python script

2006-05-11 Thread chaosquant
Ravi Teja a écrit : > > For more advanced needs, take a look at some of the extending options > available. > http://www.suttoncourtenay.org.uk/duncan/accu/integratingpython.html Thanks for your answer. It is just what I'm trying to do. Unfortunately, apparently I need a "pyhton24_d.lib" to link

Re: Calling C/C++ functions in a python script

2006-05-10 Thread Ravi Teja
If all you have are functions, the easiest is to create a simple dll/so and load it into Python with ctypes. http://starship.python.net/crew/theller/ctypes/tutorial.html For more advanced needs, take a look at some of the extending options available. http://www.suttoncourtenay.org.uk/duncan/accu/i