ExtRemoteData::GetBoolean method (engextcpp.hpp)

The GetBoolean method returns a Boolean version of the ExtRemoteData object, which represents the contents of the target's memory.

Syntax

BOOLEAN GetBoolean();

Return value

GetBoolean returns the BOOLEAN version of the ExtRemoteData object.

Remarks

The size of the memory represented by the ExtRemoteData object must be sizeof(BOOLEAN).

Note   There are several different types that can be used to represent a Boolean value. BOOLEAN is one of these types. For the C++ bool type, use ExtRemoteData::GetStdBool. For the BOOL type, use ExtRemoteData::GetW32Bool.
 

Requirements

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

See also

ExtRemoteData

ExtRemoteData::GetData

ExtRemoteData::GetStdBool

ExtRemoteData::GetW32Bool