summaryrefslogtreecommitdiff
path: root/atari/global_evnt.h
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2012-12-06 01:42:06 +0100
committerOle Loots <ole@monochrom.net>2012-12-06 01:42:06 +0100
commit0a237c6e4793198829f2e9058d54b3eeb7bb0133 (patch)
treed1e8ed8dc70ede8a9d618d58e0afa88045aa6977 /atari/global_evnt.h
parentc4b09a8439c3465354aa7c8545ed54d099eb17fa (diff)
downloadnetsurf-0a237c6e4793198829f2e9058d54b3eeb7bb0133.tar.gz
netsurf-0a237c6e4793198829f2e9058d54b3eeb7bb0133.tar.bz2
Removed global_evnt.* from source tree
Diffstat (limited to 'atari/global_evnt.h')
-rwxr-xr-xatari/global_evnt.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/atari/global_evnt.h b/atari/global_evnt.h
deleted file mode 100755
index 76e73fc6b..000000000
--- a/atari/global_evnt.h
+++ /dev/null
@@ -1,47 +0,0 @@
-/*
- * Copyright 2010 Ole Loots <ole@monochrom.net>
- *
- * This file is part of NetSurf, http://www.netsurf-browser.org/
- *
- * NetSurf is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
- *
- * NetSurf 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#ifndef NS_ATARI_GLOBAL_EVNT_H
-#define NS_ATARI_GLOBAL_EVNT_H
-
-#include <stdbool.h>
-
-struct s_keybd_evnt_data
-{
- char ascii;
-} keybd_evnt_data;
-
-struct s_evnt_data
-{
- bool ignore;
- union {
- struct s_keybd_evnt_data keybd;
- } u;
-};
-
-struct s_evnt_data evnt_data;
-
-/*
- Global event handlers
-*/
-
-void bind_global_events( void );
-void unbind_global_events( void );
-
-
-#endif