From 5ea485e197ba946626af822312b7c26410098ab1 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 4 May 2014 11:51:40 +0200 Subject: [PATCH] Added missing function stub. --- src/wl_window.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/wl_window.c b/src/wl_window.c index bfeeab5c..a7bef77c 100644 --- a/src/wl_window.c +++ b/src/wl_window.c @@ -179,6 +179,14 @@ void _glfwPlatformGetFramebufferSize(_GLFWwindow* window, int* width, int* heigh _glfwPlatformGetWindowSize(window, width, height); } +void _glfwPlatformGetWindowFrameSize(_GLFWwindow* window, + int* left, int* top, + int* right, int* bottom) +{ + // TODO + fprintf(stderr, "_glfwPlatformGetWindowFrameSize not implemented yet\n"); +} + void _glfwPlatformIconifyWindow(_GLFWwindow* window) { // TODO