Go to the documentation of this file. 9 #ifndef CUBBYFLOW_MACROS_H 10 #define CUBBYFLOW_MACROS_H 12 #if defined(_WIN32) || defined(_WIN64) 13 # define CUBBYFLOW_WINDOWS 14 #elif defined(__APPLE__) 15 # define CUBBYFLOW_APPLE 16 # ifndef CUBBYFLOW_IOS 17 # define CUBBYFLOW_MACOSX 19 #elif defined(linux) || defined(__linux__) 20 # define CUBBYFLOW_LINUX 23 #ifdef CUBBYFLOW_WINDOWS 25 typedef SSIZE_T ssize_t;
27 #include <sys/types.h> 30 #ifndef UNUSED_VARIABLE 31 # define UNUSED_VARIABLE(x) ((void)x)