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

Enumera los tipos de teclado según la distribución de las teclas.

<a id="syntaxSection" />

## Sintaxis

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

<a id="constantsSection" />

## Constantes

| Constante                | Descripción                                         |
| ------------------------ | --------------------------------------------------- |
| GameInputUnknownKeyboard | Indica que el tipo de teclado es desconocido.       |
| GameInputAnsiKeyboard    | Indica que el tipo de teclado es ANSI (104 teclas). |
| GameInputIsoKeyboard     | Indica que el tipo de teclado es ISO (105 teclas).  |
| GameInputKsKeyboard      | Indica que el tipo de teclado es KS (106 teclas).   |
| GameInputAbntKeyboard    | Indica que el tipo de teclado es ABNT (107 teclas). |
| GameInputJisKeyboard     | Indica que el tipo de teclado es JIS (109 teclas).  |

<a id="remarksSection" />

## Comentarios

Los tipos de teclado de esta enumeración hacen referencia a las distribuciones de las teclas de varios tipos de teclados.

Esta enumeración se usa en la estructura [GameInputKeyboardInfo](/reference/input/gameinput/structs/gameinputkeyboardinfo).

Para obtener más información, consulte [Dispositivos de GameInput](/build/core-features/common/input/overviews/input-devices).

<a id="requirementsSection" />

## Requisitos

**Encabezado:** GameInput.h

**Plataformas compatibles:** Windows, consolas de la familia XBOX One y consolas XBOX Series

<a id="seealsoSection" />

## Consulte también

[Información general de GameInput](/build/core-features/common/input/overviews/input-overview)\
[GameInput](/reference/input/gameinput/gameinput_members)

## Historial de versiones

| Versión | Cambios       |
| ------- | ------------- |
| **v0**  | Se introdujo. |


## Related topics

- [GameInput](/es/reference/input/gameinput/gameinput_members.md)
- [GameInputKind](/es/reference/input/gameinput/enums/gameinputkind.md)
- [IGameInput::RegisterKeyboardLayoutCallback](/es/reference/input/gameinput/interfaces/igameinput/methods/igameinput_registerkeyboardlayoutcallback.md)
- [GameInputSwitchKind](/es/reference/input/gameinput/enums/gameinputswitchkind.md)
- [GameInputEnumerationKind](/es/reference/input/gameinput/enums/gameinputenumerationkind.md)
