archeus/packages/console/ncurses/key.h

19 lines
303 B
C
Raw Normal View History

#ifndef ARC_CONSOLE_NCURSES_KEY_H_
#define ARC_CONSOLE_NCURSES_KEY_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "arc/console/key.h"
#include <stdint.h>
typedef struct ARC_ConsoleKeyType {
int32_t key;
} ARC_ConsoleKeyType;
#ifdef __cplusplus
}
#endif
#endif // !ARC_CONSOLE_NCURSES_KEY_H_