]> git.sesse.net Git - vlc/blob - src/test/keys.c
Use var_Inherit* instead of var_CreateGet*.
[vlc] / src / test / keys.c
1 /*****************************************************************************
2  * keys.c: test for key support
3  *****************************************************************************
4  * Copyright (C) 2009 RĂ©mi Denis-Courmont
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19  *****************************************************************************/
20
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
24
25 #include <stdio.h>
26 #include <stdint.h>
27 #include <stdbool.h>
28
29 #define __LIBVLC__
30 #include "../config/keys.c"
31
32 int main (void)
33 {
34     bool ok = true;
35
36     /* Make sure keys are sorted properly, so that bsearch() works */
37     for (size_t i = 1; i < vlc_num_keys; i++)
38         if (vlc_keys[i].i_key_code < vlc_keys[i - 1].i_key_code)
39         {
40             fprintf (stderr,
41                      "%s (%06"PRIx32") should be before %s (%06"PRIx32")\n",
42                      vlc_keys[i].psz_key_string, vlc_keys[i].i_key_code,
43                      vlc_keys[i - 1].psz_key_string,
44                      vlc_keys[i - 1].i_key_code);
45             ok = false;
46         }
47
48     return !ok;
49 }