mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
10 lines
212 B
C++
10 lines
212 B
C++
#pragma once
|
|
|
|
#if defined _MSC_VER || defined __MINGW32__
|
|
#define BRYNET_PLATFORM_WINDOWS
|
|
#elif defined __APPLE_CC__ || defined __APPLE__
|
|
#define BRYNET_PLATFORM_DARWIN
|
|
#else
|
|
#define BRYNET_PLATFORM_LINUX
|
|
#endif
|