KBD_GetKind

C Specification

#include "kbd.h";
KBDKind KBD_GetKind( void );

Arguments

None.

Return Values

Keyboard type

Description

Returns the type of keyboard that is currently being displayed. The keyboard types returned for the enum KBDKind are as follows:

typedef enum
{
    KBD_KIND_ASCII,     // ASCII keyboard
    KBD_KIND_JAPANESE,  // Japanese keyboard
    KBD_KIND_EUROPE,    // European special-character keyboard set
    KBD_KIND_SIGN,      // Symbols keyboard
    KBD_KIND_PICTURE,   // Pictograph keyboard
    KBD_KIND_NUM
} KBDKind;

See Also

CONFIDENTIAL