diff options
Diffstat (limited to 'devtools/test_binaries/COMMON.H')
| -rw-r--r-- | devtools/test_binaries/COMMON.H | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/devtools/test_binaries/COMMON.H b/devtools/test_binaries/COMMON.H new file mode 100644 index 0000000..6ead1b7 --- /dev/null +++ b/devtools/test_binaries/COMMON.H @@ -0,0 +1,27 @@ +//========= Copyright � 1996-2005, Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +// $NoKeywords: $ +// +//=============================================================================// +// MakePtr is a macro that allows you to easily add to values (including +// pointers) together without dealing with C's pointer arithmetic. It +// essentially treats the last two parameters as DWORDs. The first +// parameter is used to typecast the result to the appropriate pointer type. +#define MakePtr( cast, ptr, addValue ) (cast)( (DWORD)(ptr) + (addValue) ) + +void DumpHeader(PIMAGE_FILE_HEADER pImageFileHeader); +void DumpOptionalHeader(PIMAGE_OPTIONAL_HEADER pImageOptionalHeader); +void DumpSectionTable(PIMAGE_SECTION_HEADER section, + unsigned cSections, + BOOL IsEXE); +BOOL LookupSymbolName(DWORD index, PSTR buffer, UINT length); +void DumpSymbolTable(PIMAGE_SYMBOL pSymbolTable, unsigned cSymbols); +LPVOID GetSectionPtr(PSTR name, PIMAGE_NT_HEADERS pNTHeader, DWORD imageBase); +PIMAGE_SECTION_HEADER GetSectionHeader(PSTR name, PIMAGE_NT_HEADERS pNTHeader); +void DumpRawSectionData(PIMAGE_SECTION_HEADER section, + PVOID base, + unsigned cSections); +void DumpLineNumbers(PIMAGE_LINENUMBER pln, DWORD count); +void HexDump(PBYTE ptr, DWORD length); |