Is there any documentation on the dumpdin prog. in vc++ explaining the use and the contents that are output by the .dll file?
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10192943.html
Zones:
C++Date Answered: 09/01/1999 Rating: 8.2 Views: 0
Through looking at dumpbin results from the object files and the mapfile for an executable, I'm hoping to map out the memory usage in a project where our exe size has balooned.
I've got a perl s...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_20777400.html
I'm using Visual C++ 5.0's "dumpbin -export" to get the list of exported functions of a 32 bits DLL (whether named or defined by ordinal number).
How can I achieve the same operation with a 16 bit...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_10041842.html
I'm looking for a way to export functions from a dll using __declspec( dllexport ) on one side and the old way proposed by MSDN( creating a handle to the dll and then creating a pointer to the func...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20379221.html
Zones:
C++Date Answered: 02/04/2003 Rating: 8.2 Views: 0
I'm using Sun Forte C++ to compile one of our applications.
I need to compare the binaries that I'm creating to existing binaries.
A good way of seeing changes on Microsoft Visual C++ is the du...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20988275.html
Zones:
C++Date Answered: 05/19/2004 Rating: 9.8 Views: 0
Experts,
I'm using JNI and the javah to produce C header files. The autogenerated header file encloses the prototypes in extern "C".
#ifdef __cplusplus
extern "C" {
#endif
...
http://www.experts-exchange.com/Programming/Languages/Java/Q_21292945.html
Zones:
JavaDate Answered: 01/31/2005 Rating: 8.2 Views: 0
Hi, all,
I built a static libary and is using it in my application. When I built the static library, what I did was just as MS books decribed. But I got several "unresolved external symbol" errors...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_10157610.htm...
Zones:
Windows MFCDate Answered: 05/18/1999 Rating: 8.2 Views: 0
I am trying guarantee backwards compatibility of my DLL. I have added a new function which puts it alphabetically in the middle of the existing functions and so the ordinal values of the functions...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_10140217.html
Hi Friends
I want to use dll file in c++ programming. I don't have .Def and .h file of that dll.
I was used dumpbin , it will display function name alone.
my question is how to find fu...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20003919.html
Zones:
C++Date Answered: 08/19/2001 Rating: 7.2 Views: 35
I'm having trouble exporting a class through a LIB file. I have a little Visual C++ project that shall just export a class definition for being linked to other projects.
The test project:
te...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20152678.html