in reply to How To Create a PERL Binding?

If you don't want to learn the ins and outs of XS, Inline::C is a pretty good place to start. It handles most of the magic for you so you can concentrate on writing relatively simple wrappers for your C functions.

Replies are listed 'Best First'.
Re^2: How To Create a PERL Binding?
by blazar (Canon) on May 25, 2007 at 09:46 UTC
    If you don't want to learn the ins and outs of XS, Inline::C is a pretty good place to start.

    Since he mentions C++, also Inline::CPP. And another interesting module which I discovered quite recently is InlineX::XS which "Auto-converts Inline::C based modules to XS".