You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 regels
181 B

  1. #ifndef OS_CPP
  2. #define OS_CPP
  3. #if OS_WINDOWS
  4. #include "os_win32.cpp"
  5. #elif OS_LINUX
  6. #include "os_linux.cpp"
  7. #else
  8. #error Development environment not supported.
  9. #endif
  10. #endif