20 lines
349 B
C++
20 lines
349 B
C++
|
#ifndef __RTC_ENGINE_PLATFORM_HPP__
|
||
|
#define __RTC_ENGINE_PLATFORM_HPP__
|
||
|
|
||
|
#ifdef WIN32
|
||
|
|
||
|
#ifndef NOMINMAX
|
||
|
#define NOMINMAX
|
||
|
#endif
|
||
|
#ifndef WIN32_LEAN_AND_MEAN
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#endif
|
||
|
#pragma warning(disable : 5039)
|
||
|
#include <windows.h>
|
||
|
#include <algorithm>
|
||
|
|
||
|
#endif
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#endif //__RTC_ENGINE_PLATFORM_HPP_
|