rtc_plugins/include/MRTCEnginePlatForm.hpp

20 lines
349 B
C++
Raw Permalink Normal View History

2025-04-09 10:34:51 +08:00
#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_