in reply to Re^2: Inlin::C in Win32
in thread Inlin::C in Win32
Please send me the details as i'm getting the same error.
i'm trying to call functions from cpp dll
bellow is my code
se Inline C => DATA =>
LIBS => '-lRemote';
$text = 'Testing wrapper dll funcs...';
my_Run();
__END__
__C__
#include <Remote.h>
int my_Run(){
Run(); // This function is defined in dll file
}