test_vista.c 232 B

12345678910
  1. /* Copyright © 2023 Steve Lhomme */
  2. /* SPDX-License-Identifier: ISC */
  3. #include <windows.h>
  4. #if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x0600 /* _WIN32_WINNT_VISTA */
  5. #error NOPE
  6. #endif
  7. int main(void)
  8. {
  9. return 0;
  10. }