/usr/include/libbluray/keys.h is in libbluray-dev 1:0.9.2-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 | /*
* This file is part of libbluray
* Copyright (C) 2010 hpi1
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library. If not, see
* <http://www.gnu.org/licenses/>.
*/
#if !defined(_BD_KEYS_H_)
#define _BD_KEYS_H_
/*
* User input
*/
typedef enum {
BD_VK_NONE = 0xffff,
/* numeric key events */
BD_VK_0 = 0,
BD_VK_1 = 1,
BD_VK_2 = 2,
BD_VK_3 = 3,
BD_VK_4 = 4,
BD_VK_5 = 5,
BD_VK_6 = 6,
BD_VK_7 = 7,
BD_VK_8 = 8,
BD_VK_9 = 9,
/* */
BD_VK_ROOT_MENU = 10, /* open root menu */
BD_VK_POPUP = 11, /* toggle popup menu */
/* interactive key events */
BD_VK_UP = 12,
BD_VK_DOWN = 13,
BD_VK_LEFT = 14,
BD_VK_RIGHT = 15,
BD_VK_ENTER = 16,
/* Mouse click */
/* Translated to BD_VK_ENTER if mouse is over valid button */
BD_VK_MOUSE_ACTIVATE = 17,
BD_VK_RED = 403,
BD_VK_GREEN = 404,
BD_VL_YELLOW = 405,
BD_VK_BLUE = 406,
} bd_vk_key_e;
#endif // _BD_KEYS_H_
|