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

The ExtRemoteData constructor creates a new instance of theExtRemoteData class.

Syntax

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

Parameters

[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), 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

ExtRemoteData::ExtRemoteData (Name, Offset, Bytes)