blob: d8689abe155bab1679f9faea8636ed02eb9ba814 (
plain)
1
2
3
4
5
6
7
8
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
|