/usr/include/allegro5/keyboard.h is in liballegro5-dev 2:5.0.10-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | /* ______ ___ ___
* /\ _ \ /\_ \ /\_ \
* \ \ \L\ \\//\ \ \//\ \ __ __ _ __ ___
* \ \ __ \ \ \ \ \ \ \ /'__`\ /'_ `\/\`'__\/ __`\
* \ \ \/\ \ \_\ \_ \_\ \_/\ __//\ \L\ \ \ \//\ \L\ \
* \ \_\ \_\/\____\/\____\ \____\ \____ \ \_\\ \____/
* \/_/\/_/\/____/\/____/\/____/\/___L\ \/_/ \/___/
* /\____/
* \_/__/
*
* Keyboard routines.
*
* See readme.txt for copyright information.
*/
#ifndef __al_included_allegro5_keyboard_h
#define __al_included_allegro5_keyboard_h
#include "allegro5/base.h"
#include "allegro5/events.h"
#include "allegro5/keycodes.h"
#ifdef __cplusplus
extern "C" {
#endif
typedef struct ALLEGRO_KEYBOARD ALLEGRO_KEYBOARD;
/* Type: ALLEGRO_KEYBOARD_STATE
*/
typedef struct ALLEGRO_KEYBOARD_STATE ALLEGRO_KEYBOARD_STATE;
struct ALLEGRO_KEYBOARD_STATE
{
struct ALLEGRO_DISPLAY *display; /* public */
/* internal */
unsigned int __key_down__internal__[(ALLEGRO_KEY_MAX + 31) / 32];
};
AL_FUNC(bool, al_is_keyboard_installed, (void));
AL_FUNC(bool, al_install_keyboard, (void));
AL_FUNC(void, al_uninstall_keyboard, (void));
AL_FUNC(bool, al_set_keyboard_leds, (int leds));
AL_FUNC(const char *, al_keycode_to_name, (int keycode));
AL_FUNC(void, al_get_keyboard_state, (ALLEGRO_KEYBOARD_STATE *ret_state));
AL_FUNC(bool, al_key_down, (const ALLEGRO_KEYBOARD_STATE *, int keycode));
AL_FUNC(ALLEGRO_EVENT_SOURCE *, al_get_keyboard_event_source, (void));
/* TODO: use the config system */
AL_VAR(bool, _al_three_finger_flag);
AL_VAR(bool, _al_key_led_flag);
#ifdef __cplusplus
}
#endif
#endif
/*
* Local Variables:
* c-basic-offset: 3
* indent-tabs-mode: nil
* End:
*/
|