in reply to Inline::C Undefined subroutine with uint8_t C function parameter

The only C types that Inline::C automatically maps to & from are those found in yourperl\lib\ExtUtils\typemap.

To use any types not found in there you need to create your own typemap file and add it to the build configuration. See C-Perl bindings section of the POD.

(Also see the "typemaps" configuration option a few lines above the start of that section.)


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority". The enemy of (IT) success is complexity.
In the absence of evidence, opinion is indistinguishable from prejudice.
  • Comment on Re: Inline::C Undefined subroutine with uint8_t C function parameter

Replies are listed 'Best First'.
Re^2: Inline::C Undefined subroutine with uint8_t C function parameter
by stevieb (Canon) on Jan 09, 2017 at 21:45 UTC

    Fantastic. Thanks BrowserUK!

    I do vaguely recall having to do this for another XS distribution I wrote quite a while ago, but must have forgotten.