1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

win: fix compilation against Windows 24H2 SDK (#4576)

Compilation against the 24H2 SDK is broken by #4327.

Fix that issue by only conditionally defining the new values.

Closes #4575
This commit is contained in:
Thad House 2024-10-17 12:36:45 -07:00 committed by GitHub
parent 52a9243317
commit 9cf0710d71
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4125,6 +4125,12 @@ typedef const UNICODE_STRING *PCUNICODE_STRING;
# define DEVICE_TYPE DWORD
#endif
#ifndef NTDDI_WIN11_ZN
# define NTDDI_WIN11_ZN 0x0A00000E
#endif
/* API is defined in newer SDKS */
#if (NTDDI_VERSION < NTDDI_WIN11_ZN)
typedef struct _FILE_STAT_BASIC_INFORMATION {
LARGE_INTEGER FileId;
LARGE_INTEGER CreationTime;
@ -4142,6 +4148,7 @@ typedef struct _FILE_STAT_BASIC_INFORMATION {
FILE_ID_128 FileId128;
LARGE_INTEGER VolumeSerialNumber;
} FILE_STAT_BASIC_INFORMATION;
#endif
/* MinGW already has a definition for REPARSE_DATA_BUFFER, but mingw-w64 does
* not.
@ -4783,6 +4790,8 @@ typedef struct _TCP_INITIAL_RTO_PARAMETERS {
#endif
/* from winnt.h */
/* API is defined in newer SDKS */
#if (NTDDI_VERSION < NTDDI_WIN11_ZN)
typedef enum _FILE_INFO_BY_NAME_CLASS {
FileStatByNameInfo,
FileStatLxByNameInfo,
@ -4790,6 +4799,7 @@ typedef enum _FILE_INFO_BY_NAME_CLASS {
FileStatBasicByNameInfo,
MaximumFileInfoByNameClass
} FILE_INFO_BY_NAME_CLASS;
#endif
typedef BOOL(WINAPI* sGetFileInformationByName)(
PCWSTR FileName,