Use more GLFWbool

This commit is contained in:
Camilla Berglund
2015-12-10 17:10:05 +01:00
parent 2b52008405
commit 45efb935c5
12 changed files with 40 additions and 40 deletions
+4 -4
View File
@@ -52,11 +52,11 @@ typedef struct _GLFWlibraryNSGL
} _GLFWlibraryNSGL;
int _glfwInitNSGL(void);
GLFWbool _glfwInitNSGL(void);
void _glfwTerminateNSGL(void);
int _glfwCreateContextNSGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig);
GLFWbool _glfwCreateContextNSGL(_GLFWwindow* window,
const _GLFWctxconfig* ctxconfig,
const _GLFWfbconfig* fbconfig);
void _glfwDestroyContextNSGL(_GLFWwindow* window);
#endif // _glfw3_nsgl_context_h_