Command prompt ========= Microsoft Windows XP [Version 5.1.2600] (c) Copyright 1985-2001 Microsoft Corp.
C: / Documents and Settings / Master> H:
H: /> cd h: / mygame / myatl / debug //myatl.dll file location
H: / mygame / myatl / debug> path =% path%; C: / Program files / microsoft visual studio .NET2003 / VC7 / BIN / / Need to add two paths, this is the path where Dumpbin.exe is located
H: / mygame / myatl / debug> Path =% path%; C: / Program Files / Microsoft Visual Studio .NET2003 / Common7 / IDE
H: / mygame / myatl / debug> path // Displays the path in the environment variable PATH = C: / Windows / System32; C: / Windows; C: / Windows / System32 / WBEM; f: / 3dsmax5 / backburner2/; c : / Program Files / CommON Files / Autodesk Shared /; C: / Program Files / Microsoft Visual Studio .NET 2003 / VC7 / BIN; C: / Program FILES / Microsoft Visual Studio .NET 2003 / Common7 / IDE
H: / mygame / myatl / debug> Dumpbin // View Dumpbin parameters Microsoft (R) Coff / PE Dumper Version 7.10.3077 Copyright (c) Microsoft Corporation. All Rights Reserved.
USAGE: DUMPBIN [OPTION] [Files]
Options:
/ ALL / ARCHIVEMEMBERS / CLRHEADER / DEPENDENTS / DIRECTIVES / DISASM [: {BYTES | NOBYTES}] / EXPORTS / FPO / HEADERS / IMPORTS [: filename] / LINENUMBERS / LINKERMEMBER [: {1 | 2}] / LOADCONFIG / OUT: filename / Pdata / pdbpath [: verbose] / Rawdata [: {None | 1 | 2 | 4 | 8} [, #]] / limited: Name / Summary (Press
H: / mygame / myatl / debug> dumpbin myatl.dll / exports // Look at Myatl.dll Exports those functions, enter my SHIFT TAB can automatically make the full file name, similar to the Ctrl Spacemicrosoft (R) Coff / PE Dumper Version in the VC 7.10.3077 Copyright (c) Microsoft Corporation. All Rights Reserved.
Dump of file myatl.dll
FILE TYPE: DLL
Section Contains The Following Exports for Myatl.dll
00000000 Characteristics 426D828E Time Date Stamp Mon Apr 25 16:51:42 2005 0.00 Version 1 Ordinal Base 5 Number of Functions 5 Number of Namesordinal Hint RVA Name
1 0 000AECA8 DLLCANUNLOADNOW 2 1 000B0274 DLLGETCLASSOBJECT 3 2 000B0AB2 DLLMAIN 4 3 000B2FA6 DLLREGISTERSERVER 5 4 000B0341 DLLUNREGISTERSERSERVER
Summary
11000 .data 3000 .idata 28000.rdata 9000.reloc 2000.RSRC 168000 .Text Ad000.TextBSS
H: / mygame / myatl / debug> Dumpbin myatl.dll / imports | more // See the imported things (DLL files and functions, etc.), parameters | more split screen Show Microsoft (R) Coff / PE Dumper Version 7.1077CopyRight (C) Microsoft Corporation. All Rights Reserved.
Dump of file myatl.dll
FILE TYPE: DLL
Section Contains the Following IMPORTS:
D3D9.DLL 1024FF5C Import Address Table 1024F7CC Import Name Table 0 Time Date Stamp 0 INDEX OF FIRST Forwarder Reference
0 Direct3DCreate9
Winmm.dll 1024FF2C IMPORT Address Table 1024F79C Import Name Table 0 Time Date Stamp 0 Index of First Forwarder Reference
- more - // According to any key button, continue ..........................................
// ................................................ 29 Pathfindextensiona
Summary
11000 .data 3000 .idata 28000.rdata 9000.reloc 2000.RSRC 168000 .Text Ad000.TextBSS
H: / mygame / myatl / debug>
Finish