I was looking at "Programming Perl" trying to understand how to write OS
vendor neutral C functions to be called by perl and felt a little
overwhelmed (as usual when reading that book).
Can someone recommend a template that works with windows/MSVC/nmake or
Cygwin/GCC/make (unix clone for windows p
Subject: Re: Starting Template for calling C from Perl
I don't think there are any such examples besides the manual. There are
generally clear warnings as to why not to try to do the c code from scratch.
Either work with the xs system directly, or try http://www.swig.org which
has good and bad sid
e having I
can probably help.
--t
- Original Message -
From: "Siegfried Heintze" <[EMAIL PROTECTED]>
To: "'Perl Beginners List'"
Sent: Friday, April 22, 2005 9:37 AM
Subject: Starting Template for calling C from Perl
> I was looking at "