Link to home
Start Free TrialLog in
Avatar of hed
hed

asked on

How do i see library symbols list ?

How do i see library symbols list in windows.
i"m looking for something to replace nm in unix.
and while i"m at it, an elfdump would also help me.
( seeing with what libraries an executable was compiled )
ASKER CERTIFIED SOLUTION
Avatar of alexo
alexo
Flag of Antarctica image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of hed
hed

ASKER

Sorry but you will need to clarify that please.
where do i use this dumpbin ?
as a vc++ compiler argument / from dos command line

thanks
hed
Sorry, I tend to be obscure at times...
dumpbin is a comman-line tool that comes with MSVC.  "/linkermember:1" is the commandline switch you pass to it and "SomeLibrary.lib" is the name of the LIB file.
You can use it manually (as I suggested above) or spawn it from a program using one of numerous methods: _spawnl(), WinExec(), CreateProcess(), ...
And the autograder hits again!