Share via


ADDRESS_KIND

Specifies the kinds of addresses.

enum enum_ADDRESS_KIND {
   ADDRESS_KIND_NATIVE                  = 0x0001,
   ADDRESS_KIND_UNMANAGED_THIS_RELATIVE = 0x0002,
   ADDRESS_KIND_UNMANAGED_PHYSICAL      = 0x0005,
   ADDRESS_KIND_METADATA_METHOD         = 0x0010,
   ADDRESS_KIND_METADATA_FIELD          = 0x0011,
   ADDRESS_KIND_METADATA_LOCAL          = 0x0012,
   ADDRESS_KIND_METADATA_PARAM          = 0x0013,
   ADDRESS_KIND_METADATA_ARRAYELEM      = 0x0014,
   ADDRESS_KIND_METADATA_RETVAL         = 0x0015,
};
typedef DWORD ADDRESS_KIND;
public enum enum_ADDRESS_KIND {
   ADDRESS_KIND_NATIVE                  = 0x0001,
   ADDRESS_KIND_UNMANAGED_THIS_RELATIVE = 0x0002,
   ADDRESS_KIND_UNMANAGED_PHYSICAL      = 0x0005,
   ADDRESS_KIND_METADATA_METHOD         = 0x0010,
   ADDRESS_KIND_METADATA_FIELD          = 0x0011,
   ADDRESS_KIND_METADATA_LOCAL          = 0x0012,
   ADDRESS_KIND_METADATA_PARAM          = 0x0013,
   ADDRESS_KIND_METADATA_ARRAYELEM      = 0x0014,
   ADDRESS_KIND_METADATA_RETVAL         = 0x0015,
};

Terms

Remarks

The IDebugAddress::GetAddress method returns the DEBUG_ADDRESS structure which contains a union of possible structures, the DEBUG_ADDRESS_UNION structure. The dwKind field of the DEBUG_ADDRESS_UNION structure holds the ADDRESS_KIND value and describes how to interpret the union field.

Requirements

Header: sh.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Reference

Enumerations (Visual Studio Debugging)

IDebugAddress::GetAddress

DEBUG_ADDRESS

DEBUG_ADDRESS_UNION