windows_include.h 188 B

1234567891011
  1. #pragma once
  2. #ifndef NOMINMAX
  3. #define NOMINMAX // prevent windows redefining min/max
  4. #endif
  5. #ifndef WIN32_LEAN_AND_MEAN
  6. #define WIN32_LEAN_AND_MEAN
  7. #endif
  8. #include <windows.h>