aboutsummaryrefslogtreecommitdiff
path: root/frontend/linux/xenv.h
diff options
context:
space:
mode:
authornotaz2012-11-05 00:28:57 +0200
committernotaz2012-11-05 03:12:25 +0200
commitcc56203b76e1fcef2c7e55b460daf07e654a1547 (patch)
tree676013793bf5d42bdc6ef629385b07620e907bef /frontend/linux/xenv.h
parent0e2e3f498456d1175916ecd69d0a9e80e701e760 (diff)
downloadpcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.tar.gz
pcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.tar.bz2
pcsx_rearmed-cc56203b76e1fcef2c7e55b460daf07e654a1547.zip
switch over to libpicofe
- libretro should not be affected by this, all others need to do 'git submodule init && git submodule update' from now on. - pandora should get gamma control support
Diffstat (limited to 'frontend/linux/xenv.h')
-rw-r--r--frontend/linux/xenv.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/frontend/linux/xenv.h b/frontend/linux/xenv.h
deleted file mode 100644
index 6abda19..0000000
--- a/frontend/linux/xenv.h
+++ /dev/null
@@ -1,18 +0,0 @@
-
-#define XENV_CAP_KEYS (1<<0)
-#define XENV_CAP_MOUSE (1<<1)
-
-/* xenv_flags specify if we need keys and mouse,
- * on return, flag is removed if input is not available */
-int xenv_init(int *xenv_flags, const char *window_title);
-
-/* read events from X, calling key_cb for key, mouseb_cb for mouse button
- * and mousem_cb for mouse motion events */
-int xenv_update(int (*key_cb)(void *cb_arg, int kc, int is_pressed),
- int (*mouseb_cb)(void *cb_arg, int x, int y, int button, int is_pressed),
- int (*mousem_cb)(void *cb_arg, int x, int y),
- void *cb_arg);
-
-int xenv_minimize(void);
-void xenv_finish(void);
-