in reply to Re: Inline::C Needed for Win32, Want it Off For UNIX
in thread Inline::C Needed for Win32, Want it Off For UNIX

Thanks so much for the help to both of you.

In direct correlation to diotalevi's post, the code now reads

BEGIN {
if ($^O eq 'MSWin32') {
require Inline;
Inline->import(C => 'DATA', NAME => 'inline_code_pl_2d59');
}
}

And seems to be working exactly as needed.

Thank you
  • Comment on Re^2: Inline::C Needed for Win32, Want it Off For UNIX

Replies are listed 'Best First'.
Re^3: Inline::C Needed for Win32, Want it Off For UNIX
by diotalevi (Canon) on Oct 28, 2005 at 20:39 UTC

    I hope you have some indentation in the code. Its standard to indent things in blocks.

      He does -- you'll see it if you View Source -- but it doesn't show since he didn't wrap his code in <code>...</code> tags.