IMAGEHLP_DUPLICATE_SYMBOL64 Structure
Contains duplicate symbol information.
This structure supersedes the IMAGEHLP_DUPLICATE_SYMBOL structure. For more information, see Updated Platform Support.
typedef struct _IMAGEHLP_DUPLICATE_SYMBOL64 {
DWORD SizeOfStruct;
DWORD NumberOfDups;
PIMAGEHLP_SYMBOL64 Symbol;
DWORD SelectedSymbol; } IMAGEHLP_DUPLICATE_SYMBOL64,
*PIMAGEHLP_DUPLICATE_SYMBOL64;
Members
- SizeOfStruct
The size of the structure, in bytes. The caller must set this member to
sizeof(IMAGEHLP_DUPLICATE_SYMBOL64)
.- NumberOfDups
The number of duplicate symbols.
- Symbol
A pointer to an array of symbols ( IMAGEHLP_SYMBOL64 structures). The number of entries in the array is specified by the NumberOfDups member.
- SelectedSymbol
The index into the symbol array for the selected symbol.
Requirements
Redistributable |
Requires DbgHelp.dll 5.1 or later. |
---|---|
Header |
Declared in DbgHelp.h. |
See Also
IMAGEHLP_SYMBOL64
SymRegisterCallbackProc64
Send comments about this topic to Microsoft
Build date: 9/25/2007
© 2007 Microsoft Corporation. All rights reserved.