Search
lxdream.org :: lxdream/src/hotkeys.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/hotkeys.h
changeset 1015:ad448bedc48a
next1072:d82e04e6d497
author nkeynes
date Sun Jun 28 12:07:21 2009 +0000 (14 years ago)
permissions -rw-r--r--
last change Fix handling of rename failure
Fix boneheadedness in get_filename_at
file annotate diff log raw
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/src/hotkeys.h Sun Jun 28 12:07:21 2009 +0000
1.3 @@ -0,0 +1,37 @@
1.4 +/**
1.5 + * $Id: $
1.6 + *
1.7 + * Handles hotkeys for pause/continue, save states, quit, etc
1.8 + *
1.9 + * Copyright (c) 2009 wahrhaft.
1.10 + *
1.11 + * This program is free software; you can redistribute it and/or modify
1.12 + * it under the terms of the GNU General Public License as published by
1.13 + * the Free Software Foundation; either version 2 of the License, or
1.14 + * (at your option) any later version.
1.15 + *
1.16 + * This program is distributed in the hope that it will be useful,
1.17 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
1.18 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1.19 + * GNU General Public License for more details.
1.20 + */
1.21 +
1.22 +#ifndef lxdream_hotkeys_H
1.23 +#define lxdream_hotkeys_H
1.24 +
1.25 +#include "config.h"
1.26 +
1.27 +#ifdef __cplusplus
1.28 +extern "C" {
1.29 +#endif
1.30 +
1.31 + void hotkeys_init();
1.32 + lxdream_config_entry_t hotkeys_get_config();
1.33 + void hotkeys_register_keys();
1.34 + void hotkeys_unregister_keys();
1.35 +
1.36 +#ifdef __cplusplus
1.37 +}
1.38 +#endif
1.39 +
1.40 +#endif
.