MINIDUMP_FUNCTION_TABLE_DESCRIPTOR structure (minidumpapiset.h)
Represents a function table stream.
Syntax
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
Requirement | Value |
---|---|
Header | minidumpapiset.h (include DbgHelp.h) |
Redistributable | DbgHelp.dll 5.1 or later |