How can I call a DLL from a scripting language? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T01:11:43Zhttp://stackoverflow.com/feeds/question/239020http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/239020/how-can-i-call-a-dll-from-a-scripting-language7How can I call a DLL from a scripting language?paxdiablo2008-10-27T03:42:07Z2008-10-27T22:56:18Z
<p>I have a third-party product, a terminal emulator, which provides a DLL that can be linked to a C program to basically automate the driving of this product (send keystrokes, detect what's on the screen and so forth).</p>
<p>I want to drive it from a scripting language (I'm comfortable with Python and slightly less so with Perl) so that we don't have to compile and send out executables to our customers whenever there's a problem found.</p>
<p>We also want the customers to be able to write their own scripts using ours as baselines and they won't entertain the idea of writing and compiling C code.</p>
<p>What's a good way of getting Python/Perl to interface to a Windows DLL. My first thought was to write a server program and have a Python script communicate with it via TCP but there's got to be an easier solution.</p>
http://stackoverflow.com/questions/239020/how-can-i-call-a-dll-from-a-scripting-language/239041#23904115Answer by albertb for How can I call a DLL from a scripting language?albertb2008-10-27T03:57:11Z2008-10-27T03:57:11Z<p>One way to call C libraries from Python is to use <a href="http://www.python.org/doc/2.5.2/lib/module-ctypes.html" rel="nofollow">ctypes</a>:</p>
<pre><code>>>> from ctypes import *
>>> windll.user32.MessageBoxA(None, "Hello world", "ctypes", 0);
</code></pre>
http://stackoverflow.com/questions/239020/how-can-i-call-a-dll-from-a-scripting-language/239043#23904311Answer by Axeman for How can I call a DLL from a scripting language?Axeman2008-10-27T03:58:05Z2008-10-27T22:36:41Z<p>In Perl, <a href="http://search.cpan.org/perldoc?Win32::API" rel="nofollow">Win32::API</a> is an easy way to some interfacing to DLLs. There is also <a href="http://search.cpan.org/perldoc?Inline::C" rel="nofollow">Inline::C</a>, if you have access to a compiler and the windows headers.</p>
<p>Perl <a href="http://search.cpan.org/perldoc?perlxs" rel="nofollow">XSUB</a>s can also create an interface between Perl and C. </p>
http://stackoverflow.com/questions/239020/how-can-i-call-a-dll-from-a-scripting-language/239064#2390645Answer by ysth for How can I call a DLL from a scripting language?ysth2008-10-27T04:13:34Z2008-10-27T04:13:34Z<p>In Perl, <a href="http://search.cpan.org/perldoc/P5NCI" rel="nofollow">P5NCI</a> will also do that, at least in some cases. But it seems to me that anything you use that directly manages interfacing with the dll is going to be user-unfriendly, and if you are going to have a user (scriptor?) friendly wrapper, it might as well be an XS module.</p>
<p>I guess I don't see a meaningful distinction between "compile and send out executables" and "compile and send out scripts".</p>
http://stackoverflow.com/questions/239020/how-can-i-call-a-dll-from-a-scripting-language/239098#2390984Answer by monopocalypse for How can I call a DLL from a scripting language?monopocalypse2008-10-27T04:46:03Z2008-10-27T04:46:03Z<p>For Python, you could compile an extension which links to the DLL, so that in Python you could just import it like a normal module. You could do this by hand, by using a library like Boost.Python, or by using a tool such as SWIG (which also supports Perl and other scripting languages) to generate a wrapper automatically.</p>
http://stackoverflow.com/questions/239020/how-can-i-call-a-dll-from-a-scripting-language/241652#2416522Answer by jussij for How can I call a DLL from a scripting language?jussij2008-10-27T22:56:18Z2008-10-27T22:56:18Z<p>The Python <strong>Py_InitModule</strong> API function allows you to create a module from c/c++ functions which can then be call from Python. </p>
<p>It takes about a dozen or so lines of c/c++ code to achieve but it is pretty easy code to write:</p>
<p><a href="http://www.python.org/doc/2.2.3/ext/methodTable.html" rel="nofollow">http://www.python.org/doc/2.2.3/ext/methodTable.html</a></p>
<p>The <a href="http://www.zeusedit.com" rel="nofollow">Zeus</a> editor that I wrote, uses this appoach to allow <a href="http://www.zeusedit.com" rel="nofollow">Zeus</a> macros to be written in Python and it works very well.</p>