Search
lxdream.org :: lxdream/src/hotkeys.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/hotkeys.h
changeset 1072:d82e04e6d497
prev1015:ad448bedc48a
author nkeynes
date Thu Nov 11 17:51:37 2010 +1000 (13 years ago)
permissions -rw-r--r--
last change Add convenience gl_check_error() function
view annotate diff log raw
     1 /**
     2  * $Id$
     3  *
     4  * Handles hotkeys for pause/continue, save states, quit, etc
     5  *
     6  * Copyright (c) 2009 wahrhaft.
     7  *
     8  * This program is free software; you can redistribute it and/or modify
     9  * it under the terms of the GNU General Public License as published by
    10  * the Free Software Foundation; either version 2 of the License, or
    11  * (at your option) any later version.
    12  *
    13  * This program is distributed in the hope that it will be useful,
    14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    16  * GNU General Public License for more details.
    17  */
    19 #ifndef lxdream_hotkeys_H
    20 #define lxdream_hotkeys_H
    22 #include "config.h"
    24 #ifdef __cplusplus
    25 extern "C" {
    26 #endif
    28         void hotkeys_init();
    29         lxdream_config_group_t hotkeys_get_config();
    30         void hotkeys_register_keys();
    31         void hotkeys_unregister_keys();
    33 #ifdef __cplusplus
    34 }
    35 #endif
    37 #endif
.