libostd/ostd/internal/win32.hh

16 lines
329 B
C++
Raw Normal View History

/* Windows includes.
*
2017-04-06 20:14:52 +02:00
* This file is part of libostd. See COPYING.md for futher information.
*/
#ifndef OSTD_INTERNAL_WIN32_HH
#define OSTD_INTERNAL_WIN32_HH
2016-01-28 19:36:48 +01:00
#if defined(WIN32) || defined(_WIN32) || (defined(__WIN32) && !defined(__CYGWIN__))
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include <windows.h>
#endif
2016-02-07 22:17:15 +01:00
#endif