Excluded Windows Vista

This commit is contained in:
Yutaka Sawada
2024-11-30 13:08:09 +09:00
committed by GitHub
parent 9d9b7a0681
commit 80969d19f9
7 changed files with 12 additions and 12 deletions

View File

@@ -1,5 +1,5 @@
// ini.c
// Copyright : 2022-02-16 Yutaka Sawada
// Copyright : 2024-11-30 Yutaka Sawada
// License : The MIT license
#ifndef _UNICODE
@@ -9,7 +9,7 @@
#define UNICODE
#endif
#ifndef _WIN32_WINNT
#define _WIN32_WINNT 0x0600 // Windows Vista or later
#define _WIN32_WINNT 0x0601 // Windows 7 or later
#endif
#include <malloc.h>