ExtRemoteData::Write method (engextcpp.hpp)

The Write method writes the data cached by the ExtRemoteData object to the region of memory on the target, represented by this object.

Syntax

void Write();

Return value

None

Remarks

This method can be used to reset the region of memory on the target to the currently cached value that was previously read from the target.

It is also possible to directly set the value cached by the ExtRemoteData object, for example:

ExtRemoteData ext_remote_data = new ExtRemoteData(address, sizeof(USHORT));
ext_remote_data.m_Data = (ULONG64) my_ushort;
ext_remote_data.Write();

Returns

This method does not return a value.

Requirements

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

See also

ExtRemoteData

ExtRemoteData::Read