MINIDUMP_FUNCTION_TABLE_DESCRIPTOR Structure

Debug Help Library

MINIDUMP_FUNCTION_TABLE_DESCRIPTOR Structure

Represents a function table stream.

typedef struct _MINIDUMP_FUNCTION_TABLE_DESCRIPTOR {
ULONG64 MinimumAddress;
ULONG64 MaximumAddress;
ULONG64 BaseAddress;
ULONG32 EntryCount;
ULONG32 SizeOfAlignPad; } MINIDUMP_FUNCTION_TABLE_DESCRIPTOR,
*PMINIDUMP_FUNCTION_TABLE_DESCRIPTOR;

Members

MinimumAddress

The minimum address of functions described by the table.

MaximumAddress

The maximum address of functions described by the table.

BaseAddress

The base address to use when computing full virtual addresses from relative virtual addresses in function entries.

EntryCount

The number of entries in the function table.

SizeOfAlignPad

The size of alignment padding that follows the function entry data, in bytes. The function entry data in the stream is guaranteed to be aligned appropriately for access to the data members. If a minidump is directly mapped in memory, it is always possible to directly reference structure members in the stream.

Remarks

The first descriptor in the function table stream follows the header, MINIDUMP_FUNCTION_TABLE_STREAM. The generic descriptor is followed by a native system descriptor, then by EntryCount native system function entry structures.

Requirements

Redistributable

Requires DbgHelp.dll 5.1 or later.

Header

Declared in DbgHelp.h.

See Also

MINIDUMP_FUNCTION_TABLE_STREAM


Send comments about this topic to Microsoft

Build date: 9/25/2007

© 2007 Microsoft Corporation. All rights reserved.