yaze 0.3.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
grpc_win_compat.h
Go to the documentation of this file.
1#ifndef YAZE_UTIL_GRPC_WIN_COMPAT_H_
2#define YAZE_UTIL_GRPC_WIN_COMPAT_H_
3
4#ifdef _WIN32
5#ifndef WIN32_LEAN_AND_MEAN
6#define WIN32_LEAN_AND_MEAN
7#endif
8#ifndef NOMINMAX
9#define NOMINMAX
10#endif
11#include <windows.h>
12
13#ifdef SendMessage
14#undef SendMessage
15#endif
16#ifdef ERROR
17#undef ERROR
18#endif
19#ifdef IGNORE
20#undef IGNORE
21#endif
22#ifdef OVERFLOW
23#undef OVERFLOW
24#endif
25#ifdef DWORD
26#undef DWORD
27#endif
28#endif // _WIN32
29
30#endif // YAZE_UTIL_GRPC_WIN_COMPAT_H_