summaryrefslogtreecommitdiffstats
path: root/src/citra/emu_window/emu_window_glfw.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-03-12 02:28:57 +0100
committerbunnei <bunneidev@gmail.com>2015-03-12 02:28:57 +0100
commited5b275d21612906e6eeb4b1f344aa0f1eb31c10 (patch)
tree54ffc1fe7163996fdaed1cb5cd948015409dcac6 /src/citra/emu_window/emu_window_glfw.h
parentMerge pull request #629 from archshift/lcdfb (diff)
parenthid_user: Removed unnecessary includes. (diff)
downloadyuzu-ed5b275d21612906e6eeb4b1f344aa0f1eb31c10.tar
yuzu-ed5b275d21612906e6eeb4b1f344aa0f1eb31c10.tar.gz
yuzu-ed5b275d21612906e6eeb4b1f344aa0f1eb31c10.tar.bz2
yuzu-ed5b275d21612906e6eeb4b1f344aa0f1eb31c10.tar.lz
yuzu-ed5b275d21612906e6eeb4b1f344aa0f1eb31c10.tar.xz
yuzu-ed5b275d21612906e6eeb4b1f344aa0f1eb31c10.tar.zst
yuzu-ed5b275d21612906e6eeb4b1f344aa0f1eb31c10.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();