Standard setup for writing C inspired by Casey Muratori, Ryan Fleury, Mr. 4th Programmer, and others in the handmade community.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

os.cpp 181 B

il y a 2 semaines
123456789101112
  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