summaryrefslogtreecommitdiff
path: root/src/test/mock/mock_GLFW.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/mock/mock_GLFW.h')
-rw-r--r--src/test/mock/mock_GLFW.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/test/mock/mock_GLFW.h b/src/test/mock/mock_GLFW.h
new file mode 100644
index 0000000..d8689ab
--- /dev/null
+++ b/src/test/mock/mock_GLFW.h
@@ -0,0 +1,9 @@
+#ifndef MOCK_GLFW_H
+#define MOCK_GLFW_H
+
+void glfwGetVersion(int *major, int *minor, int *rev);
+int glfwInit();
+void glfwTerminate();
+int glfwGetError(const char **description);
+
+#endif