Debugging Tools for Windows

ExtRemoteData::Write

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

void
  ExtRemoteData::Write(
    void
    ) throw(...)

Parameters

None

Return Value

None

Comments

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();

Requirements

Headers: Defined in Engextcpp.hpp. Include Engextcpp.hpp.

See Also

ExtRemoteData, ExtRemoteData::Read

Build machine: CAPEBUILD