ExtRemoteData::ExtRemoteData(PCSTR,ULONG64,ULONG) method (engextcpp.hpp)

The ExtRemoteData constructor creates a new instance of the ExtRemoteData class.

Syntax

void ExtRemoteData(
  [in] PCSTR   Name,
  [in] ULONG64 Offset,
  [in] ULONG   Bytes
);

Parameters

[in] Name

Name of the memory region. Name can be used to help identify the region and will be inserted into any error messages generated by the new object.

[in] Offset

Location of the beginning of the memory region in the target's virtual address space.

[in] Bytes

Number of bytes in the memory region.

Return value

None

Remarks

If a memory region is specified, the contents of the region are read from the target and cached. The data can be retrieved using ExtRemoteData::GetData or one of the ExtRemoteTyped::GetXxx methods.

The constructor is called by the ExtRemoteData::Set(Typed) and ExtRemoteData::Set(Offset Bytes) methods and the ExtRemoteData::GetData method.

Requirements

Requirement Value
Target Platform Desktop
Header engextcpp.hpp (include Engextcpp.hpp)

See also

ExtRemoteData

ExtRemoteData::GetData