14 lines
164 B
C++
14 lines
164 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "target_os.hpp"
|
||
|
|
|
||
|
|
#ifdef OMIM_OS_WINDOWS
|
||
|
|
#include <windows.h>
|
||
|
|
|
||
|
|
#undef min
|
||
|
|
#undef max
|
||
|
|
// #undef far
|
||
|
|
// #undef near
|
||
|
|
|
||
|
|
#endif // OMIM_OS_WINDOWS
|