From 0f3b69c79dab01baf3f2f08ac38a1067b2574b74 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Sun, 5 Jul 2015 01:13:52 +0200 Subject: [PATCH] Fixed missing utility function return types. Fixes #546. --- src/win32_window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win32_window.c b/src/win32_window.c index daad58bf..bdb3359a 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -40,7 +40,7 @@ // Returns the window style for the specified window // -static getWindowStyle(const _GLFWwindow* window) +static DWORD getWindowStyle(const _GLFWwindow* window) { DWORD style = WS_CLIPSIBLINGS | WS_CLIPCHILDREN; @@ -59,7 +59,7 @@ static getWindowStyle(const _GLFWwindow* window) // Returns the extended window style for the specified window // -static getWindowExStyle(const _GLFWwindow* window) +static DWORD getWindowExStyle(const _GLFWwindow* window) { DWORD style = WS_EX_APPWINDOW;