summaryrefslogtreecommitdiffstats
path: root/src/citra/emu_window/emu_window_glfw.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-08 08:19:33 +0100
committerbunnei <bunneidev@gmail.com>2015-03-10 23:05:18 +0100
commitdd73217ae388a74f0c4d000ef52edd0f2b7fa64c (patch)
tree2702f3504baf5dedb892ca6f93e77bd69c8657e7 /src/citra/emu_window/emu_window_glfw.h
parentEmuWindow: Added infrastructure code to enable touchpad support. (diff)
downloadyuzu-dd73217ae388a74f0c4d000ef52edd0f2b7fa64c.tar
yuzu-dd73217ae388a74f0c4d000ef52edd0f2b7fa64c.tar.gz
yuzu-dd73217ae388a74f0c4d000ef52edd0f2b7fa64c.tar.bz2
yuzu-dd73217ae388a74f0c4d000ef52edd0f2b7fa64c.tar.lz
yuzu-dd73217ae388a74f0c4d000ef52edd0f2b7fa64c.tar.xz
yuzu-dd73217ae388a74f0c4d000ef52edd0f2b7fa64c.tar.zst
yuzu-dd73217ae388a74f0c4d000ef52edd0f2b7fa64c.zip
Diffstat (limited to 'src/citra/emu_window/emu_window_glfw.h')
-rw-r--r--src/citra/emu_window/emu_window_glfw.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/citra/emu_window/emu_window_glfw.h b/src/citra/emu_window/emu_window_glfw.h
index 5252fccc8..16c109b79 100644
--- a/src/citra/emu_window/emu_window_glfw.h
+++ b/src/citra/emu_window/emu_window_glfw.h
@@ -27,6 +27,10 @@ public:
static void OnKeyEvent(GLFWwindow* win, int key, int scancode, int action, int mods);
+ static void OnMouseButtonEvent(GLFWwindow* window, int button, int action, int mods);
+
+ static void OnCursorPosEvent(GLFWwindow* window, double x, double y);
+
/// Whether the window is still open, and a close request hasn't yet been sent
const bool IsOpen();