Hi All,

I am new to perl and inline.  I have written a function in C and
compiled it into a dll using MSVC 6.0.  That is fine, I see that the
function is there.

Perl:

use Inline C => Config => LIBS => "C:\\test\\test.dll";
use Inline C;

print XpressTest(), "\n";

__END__
__C__

int XpressTest() {
    return XPITest();
}



XPITest is defined in a C file which I compiled into a dll.  All it does
is the following

int
XPITest()
{
    return(1234567);
}


The error message I get is the following:
...
Had problems bootstrapping ....
...
Can't load <name> for ...  not a valid Win32 application.

Again I just compiled it with vc6 into a dll.

    Any help would be great

            Glenn

--

Glenn MacGregor

Director of Services
Oracom, Inc.
http://www.oracom.com

Tel. +1 978.557.5710 Ext. 302
Fax  +1 978.557.5716



Reply via email to