winint.h 364 B

12345678910111213141516
  1. #pragma once
  2. /*
  3. * WARN:
  4. * including this header does not make a lot of sense.
  5. * You should just #include all necessary headers from Windows SDK,
  6. * and then #include <util/system/win_undef.h> in order to undefine some common macros.
  7. */
  8. #include <util/system/platform.h>
  9. #if defined(_win_)
  10. #include <windows.h>
  11. #endif
  12. #include <util/system/win_undef.h>