Tagged Questions

The Microsoft COFF Binary File Dumper (DUMPBIN.EXE) displays information about Common Object File Format (COFF) binary files.

learn more… | top users | synonyms

4
votes
2answers
114 views

Utility for analysing symbols in a library file

I'm having some problems with a large static library (.lib) file, and am suspecting code bloat from indiscriminate use of template classes. I want to analyse the symbols in the library to confirm ...
3
votes
1answer
829 views

How is dumpbin able to read the export table when it appears at a file offset larger than the file itself?

I'm writing a little PE reader, so I run dumpbin alongside my test application to confirm that the values are being read correctly. Everything it working so far, except for the export table. The file ...
2
votes
2answers
106 views

Why does subprocess.Popen not work

I tried a lot of things but for some reason I could not get things working. I am trying to run dumpbin utility of MS VS using a Python script. Here are what I tried (and what did not work for me) 1. ...
1
vote
0answers
19 views

How do I parse a DumpBin.exe Output file with Regular Expression or LinqToText

I'm writing a utility wrapper around dumpbin.exe and outputting exports and dependencies for exe files, ocx files and dllfiles. Besides dependency information, I also need to capture Export ...
1
vote
4answers
77 views

awkward DLL exports section

I have a section of C++ code in MSVC2010 that creates a DLL wrapper. The section of code looks something like this... extern "C" __declspec(dllexport) DWORD myDllExportFunction() { return ...
1
vote
0answers
59 views

fatal error LNK1118

When I build my dll the "fatal error LNK1118: syntax error in 'ENTRY' statement" occur in definition.def file.So please tell me how to write in the definition.def file.In somwhere I read about ...
1
vote
0answers
69 views

How to approximately know the function trace from crash dump from optimized windows binary?

I have a crash dump file generated from windows X86-64 binary (XXX). 00000000`005764aa : 00000000`00000abc 00000000`005d0c68 00000000`00000000 00000000`00000000 : kernel32!WaitForSingleObjectEx+0xdf ...
1
vote
1answer
139 views

Finding arguments that go with methods in C++ dll's

Ok, so I can use dumpbin.exe /exports library.dll to find all methods in the dll. ...but how do I find out which arguments to pass into them? Without a header file of course.
0
votes
0answers
39 views

odd DLL exports section after migration MSVC2010

I have two different export sections of an old DLL that was made and a new one that I am making. The old one was created in visual studio 2003 I believe and I am using 2010. Here is the dumpbin ...
0
votes
1answer
72 views

What does UNDEF and notype() mean when seeing the C++ library information using dumpbin?

I used dumpbin /symbols to see the library I created. Some functions have UNDEF notype in the output. What does that mean? Is there any link to study the structure of dumpbin output?
0
votes
1answer
189 views

Dumpbin.exe for Linux to view imports

I'm not sure my question makes sense in a linux way. I'm searching for something that would works similar to dumpbin.exe from Visual Studio toolkit. Basically I have an existing project with a bunch ...
0
votes
2answers
204 views

Dumpbin warning LNK4195: unable to load msdis170.dll

I'm trying to use dumpbin with the /DISASM option to dump the disassembly of a file. It gives me the error LINK : warning LNK4195: unable to load msdis170.dll. Apparently the file msdis170.dll ...
0
votes
0answers
120 views

Incorrect functions listed in import table

Trying to create a dll that uses a few libraries but the import table is looking for functions which exist in glib in the libpurple library. Below is the dump from dumpbin libglib-2.0-0.dll ...
0
votes
1answer
245 views

Analyze .exe/.dll (Windows PE) files for code bloats

Let's say I have a project with a dozen of different modules which produce one resultant DLL, how can I analyze it so that I can identify the actual file size that each module/functions contribute? I ...
0
votes
1answer
192 views

Why is DumpBin telling me there are no COMDATs in my binaries when I know there are truckloads of the things?

This is the output I get from dumpbin AchievementsTable.obj /HEADERS Microsoft (R) COFF/PE Dumper Version 8.00.50727.762 Copyright (C) Microsoft Corporation. All rights reserved. Dump of file ...
0
votes
1answer
64 views

How to filter specific symbols(Only defined in dll/Exe/lib) using dia2dump

I need all of my defined symbols (functions) in a certain DLL/EXE/LIB. I don't need kernel or other OS-layer symbols, only those that are defined by my own DLL or EXE, which I am giving it as PDB, but ...
0
votes
2answers
296 views

How do I get source file information with dumpbin /symbols when compiling with VS 2005?

I have a tool which uses the output of dumpbin /symbols to do some dependency analysis with our C/C++ libraries. When we compiled the libs with VS 6.0, the dumpbin COFF SYMBOL TABLE contained entries ...