CLRDATA_MODULE_EXTENT Structure
Describes a memory region associated with a module.
Note
This API was originally designed for internal use in the runtime. Although it is now supported for 3rd party use, we recommend working with ICorDebug
and ICorProfiler
APIs when possible.
Syntax
struct CLRDATA_MODULE_EXTENT
{
CLRDATA_ADDRESS base;
ULONG32 length;
CLRDataModuleExtentType type;
};
Members
Member | Description |
---|---|
base |
The base address of the memory range associated with the module. |
length |
The length of the memory range associated with the module. |
type |
The type of memory range associated with the module. |
Remarks
This structure lives inside the runtime and is not exposed through any headers or library files. To use it, define the structure as specified above, where CLRDATA_ADDRESS
is a 64-bit unsigned integer.
Requirements
Platforms: See System Requirements. Header: None Library: None .NET Framework Versions: Available since 4.7
See also
Samarbejd med os på GitHub
Kilden til dette indhold kan findes på GitHub, hvor du også kan oprette og gennemse problemer og pullanmodninger. Du kan få flere oplysninger i vores vejledning til bidragydere.