> ## Documentation Index
> Fetch the complete documentation index at: https://devdocs.xbox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GameInputRawDeviceReportKind

> GameInputRawDeviceReportKind

# GameInputRawDeviceReportKind

Enumerates types of raw device reports.

<a id="syntaxSection" />

## Syntax

```cpp theme={null}
enum GameInputRawDeviceReportKind
{
    GameInputRawInputReport = 0,
    GameInputRawOutputReport = 1,
};
```

<a id="constantsSection" />

## Constants

| Constant                 | Description    |
| ------------------------ | -------------- |
| GameInputRawInputReport  | Input report.  |
| GameInputRawOutputReport | Output report. |

<a id="remarksSection" />

## Remarks

This enumeration is used in the [GameInputRawDeviceReportInfo](/reference/input/gameinput/structs/gameinputrawdevicereportinfo) structure. It is also used by the [IGameInputDevice::CreateRawDeviceReport](/reference/input/gameinput/interfaces/igameinputdevice/methods/igameinputdevice_createrawdevicereport) method.

For intermediate and advanced use cases of the GameInput API, see [Advanced GameInput](/build/core-features/common/input/advanced/input-advanced-topics) topics.

<a id="requirementsSection" />

## Requirements

**Header:** GameInput.h

**Supported platforms:** Windows, XBOX One family consoles and XBOX Series consoles

<a id="seealsoSection" />

## See also

[Overview of GameInput](/build/core-features/common/input/overviews/input-overview)\
[GameInput](/reference/input/gameinput/gameinput_members)

## Version History

| Version | Changes                                                                                                                                                  |
| ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **v3**  | **Re-introduced** (was present in v0, absent in v1 and v2). `GameInputRawFeatureReport` (value 2) removed; only `InputReport` and `OutputReport` remain. |
| **v1**  | Not present (removed from v0 along with `IGameInputRawDeviceReport`).                                                                                    |
| **v0**  | Introduced.                                                                                                                                              |

## Appendix: Previous versions

### v0

```cpp theme={null}
enum GameInputRawDeviceReportKind
{
    GameInputRawInputReport   = 0,
    GameInputRawOutputReport  = 1,
    GameInputRawFeatureReport = 2,
};
```


## Related topics

- [IGameInputDevice::CreateRawDeviceReport](/reference/input/gameinput/interfaces/igameinputdevice/methods/igameinputdevice_createrawdevicereport.md)
- [GameInputRawDeviceReportInfo](/reference/input/gameinput/structs/gameinputrawdevicereportinfo.md)
- [GameInput](/reference/input/gameinput/gameinput_members.md)
- [GameInputRawDeviceItemCollectionKind](/reference/input/gameinput/deprecated/enums/gameinputrawdeviceitemcollectionkind.md)
- [GameInputRawDeviceReportItemInfo](/reference/input/gameinput/deprecated/structs/gameinputrawdevicereportiteminfo.md)
