IGameInputReading::GetRawReport

Note

This function is not yet implemented.

Retrieves the raw data from the device input.

Syntax

bool GetRawReport(  
         IGameInputRawDeviceReport** report  
)  

Parameters

report   _Outptr_result_maybenull_
Type: IGameInputRawDeviceReport**

Raw data device input.

Return value

Type: bool

Returns false.

After this method gets implemented, it will return true if raw data is retrieved successfully.

Remarks

Input reports can only be retrieved from the GetRawReport method on the IGameInputReading interface. They are never directly created. These reports contain the raw data that is used to generate the rudimentary and fixed-format state available from the IGameInputReading interface. Applications can analyze the raw data in an input reading. They cannot modify the raw data. For intermediate and advanced use-cases of the GameInput API, see Advanced GameInput topics.

Requirements

Header: GameInput.h

Library: xgameruntime.lib

Supported platforms: Windows, Xbox One family consoles and Xbox Series consoles

See also

Overview of GameInput
IGameInputReading