Ryen的学习笔记

成长有多少新奇的美,就有多少撕裂的痛;离去有多么辽阔的自由,就有多么无边的孤寂。
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

VC++.Net 使用技巧

Posted on 2010-01-06 17:19  Ryen_lee  阅读(323)  评论(0)    收藏  举报

     DumpBin 工具:

                     我们在查看一个.exe文件需要哪些.dll和一个dll会导出那些函数的时候我们都会用到dumpbin。

                     使用时首先进入Visual Studio command prompt控制台, 然后执行命令:

       
DUMPBIN [options] files...

  • BSCMAKE.EXE builds a browse information file (.bsc) that contains information aboutthe symbols (classes, functions, data, macros, and types) in yourprogram. You view this information in browse windows within thedevelopment environment. (A .bsc file can also be built in thedevelopment environment.)

  • LIB.EXE is used to create and manage a library of Common Object File Format(COFF) object files. It can also be used to create export files and import libraries to reference exported definitions.

  • EDITBIN.EXE is used to modify COFF binary files.

  • DUMPBIN.EXE displays information (such as a symbol table) about COFF binary files.

  • NMAKE reads and executes makefiles.

  • ERRLOOK, the Error Lookup utility, retrieves a system error message or module error message based on the value entered.