Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: perlxs documentation

by zentara (Archbishop)
on May 26, 2005 at 11:12 UTC ( [id://460616]=note: print w/replies, xml ) Need Help??


in reply to perlxs documentation

Here is an example I have from unknown origin (probably perl.inline newsgroup) for using Inline::C
#!/usr/bin/perl # Suppose libyourlib contains a function called 'multiply' which takes + 2 # arguments of type int and returns a int. You could access it with # Inline::C as follows: use Inline C => Config => LIBS => '-L/path/to/the_static_lib -lyourlib'; use Inline C => <<'EOC'; #include "yourlib.h" int wrap_multiply(int a, int b) { return multiply(a,b); } EOC my $x = 17; my $y = 123; print wrap_multiply($x, $y); __END__ # And, so long as libyourlib.so was able to be found, that Inline scri +pt # should work fine (typing errors aside :-).

I'm not really a human, but I play one on earth. flash japh

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://460616]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-20 00:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found