Fixed missing utility function return types.

Fixes #546.
This commit is contained in:
Camilla Berglund
2015-07-05 01:13:52 +02:00
parent cf10e318d6
commit 0f3b69c79d
+2 -2
View File
@@ -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;