Hi Glenn,
> use Inline C => Config => LIBS => "C:\\test\\test.dll";
The LIBS config option is eventually passed directly to cl.exe,
Microsoft's compiler. You need to specify library flags, like this:
use Inline C => Config => LIBS => '-LC:\\test -ltest';
I _think_ that will fix the problem. Check out 'perldoc Inline::C' or
'perldoc MakeMaker' for help on the LIBS option. To see command-line
options for cl.exe, check out the online reference:
http://msdn.microsoft.com/library/en-us/vccore98/HTML/_core_compiler_reference.asp
Later,
Neil