> ## 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.

# GameInputKeyboardKind

> GameInputKeyboardKind

# GameInputKeyboardKind

Enumerates keyboard types by key layout.

<a id="syntaxSection" />

## Syntax

```cpp theme={null}
enum GameInputKeyboardKind
{
    GameInputUnknownKeyboard = -1,
    GameInputAnsiKeyboard    =  0,
    GameInputIsoKeyboard     =  1,
    GameInputKsKeyboard      =  2,
    GameInputAbntKeyboard    =  3,
    GameInputJisKeyboard     =  4
};
```

<a id="constantsSection" />

## Constants

| Constant                 | Description                                         |
| ------------------------ | --------------------------------------------------- |
| GameInputUnknownKeyboard | Indicates that the keyboard type is unknown.        |
| GameInputAnsiKeyboard    | Indicates that the keyboard type is ANSI (104-key). |
| GameInputIsoKeyboard     | Indicates that the keyboard type is ISO (105-key).  |
| GameInputKsKeyboard      | Indicates that the keyboard type is KS (106-key).   |
| GameInputAbntKeyboard    | Indicates that the keyboard type is ABNT (107-key). |
| GameInputJisKeyboard     | Indicates that the keyboard type is JIS (109-key).  |

<a id="remarksSection" />

## Remarks

The keyboard types in this enumeration refer to the layouts of keys on various types of keyboards.

This enumeration is used in the [GameInputKeyboardInfo](/reference/input/gameinput/structs/gameinputkeyboardinfo) structure.

For more information, see [GameInput devices](/build/core-features/common/input/overviews/input-devices).

<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     |
| ------- | ----------- |
| **v0**  | Introduced. |


## Related topics

- [GameInputKeyboardInfo](/reference/input/gameinput/structs/gameinputkeyboardinfo.md)
- [GameInput](/reference/input/gameinput/gameinput_members.md)
- [GameInputKind](/reference/input/gameinput/enums/gameinputkind.md)
- [GameInputKeyboardLayoutCallback](/reference/input/gameinput/functions/gameinputkeyboardlayoutcallback.md)
- [IGameInput::RegisterKeyboardLayoutCallback](/reference/input/gameinput/interfaces/igameinput/methods/igameinput_registerkeyboardlayoutcallback.md)
