Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Can someone please let me know the ways to access C DLL functions through perl

There's 3 ways that come immediately to mind:

1) Use Win32::API;
2) Use Inline::C;
3) Use XS;

Note that 2) and 3) are essentially the same, but Inline::C is less complicated (IMO).
However, both 2) and 3) require that you have a C compiler.
If you have a Microsoft compiler, then you'll also need an import library (.lib) for the DLL. If you don't have the import lib, I think it could be created from the dll.
If you use a (mingw port of) the gcc compiler, you can link directly to the dll, and don't even need an import library.
There are other options as regards compilers, but I'm not familiar with them.

So ... it's really just a question of how you want to approach it. I would use a MinGW port of gcc and Inline::C.
Win32::API has simply caused me too much grief over the years, and I couldn't write an XS file by hand if my life depended on it ... but perhaps that says more about *me* than anything else.

Which path do you want to go down ?

Cheers,
Rob

In reply to Re: Different ways to access C DLL functions from perl by syphilis
in thread Different ways to access C DLL functions from perl by PerlRider

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (3)
As of 2024-04-20 02:52 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found