I get to answer my own question again. Linking in mscoree.lib fixed
things. Another group posting suggested that the symbol was in
msvcprt.lib, which doesn't seem to be the case. BTW, is there a way to
list the exported symbols in a library? I tried lib /list /verbose,
but it only gave the corresponding dll name, not the symbol name.
Thanks,
-- Andrew Bell
andrew.bell.ia@gmail.com
Carl Daniel [VC++ MVP] - 30 Jun 2005 21:23 GMT
> I get to answer my own question again. Linking in mscoree.lib fixed
> things. Another group posting suggested that the symbol was in
> msvcprt.lib, which doesn't seem to be the case. BTW, is there a way
> to list the exported symbols in a library? I tried lib /list
> /verbose, but it only gave the corresponding dll name, not the symbol
> name.
try dumpbin /symbols.
It'll list lots of stuff that you don't need, but you can find all the
public symbols in the results.
-cd