Remove tabing from win32_window.c and windows specific headers from window.c

This commit is contained in:
Raja 2017-11-19 22:18:43 -05:00
parent 2e514c6b19
commit f83c337f5a
2 changed files with 1 additions and 3 deletions

View File

@ -42,7 +42,7 @@
//
static DWORD getWindowStyle(const _GLFWwindow* window)
{
DWORD style = WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
DWORD style = WS_CLIPSIBLINGS | WS_CLIPCHILDREN;
if (window->monitor)
style |= WS_POPUP;

View File

@ -27,8 +27,6 @@
//========================================================================
#include "internal.h"
#include <WinUser.h>
#include <windowsx.h>
#include <assert.h>
#include <string.h>
#include <stdlib.h>