engine/include/Utils/WinApi/WinApi.h

24 lines
411 B
C
Raw Normal View History

2013-01-19 20:02:34 +00:00
#pragma once
#define NOMINMAX 1
#include "windows.h"
#undef NOMINMAX
#include "gl/gl.h"
#include "gl/glu.h"
#include "gl/glext.h"
namespace SE
{
/*
Here goes all functions that are platform-specific
When I make iOS/Mac/Linux port, I will make same API pair h/cpp
*/
void GetWindowWidthHeight(int& width, int& height);
int GetWindowWidth();
int GetWindowHeight();
} //namespace SE