mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
20 lines
531 B
C
20 lines
531 B
C
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_OSVERSIONINFO_H_
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_OSVERSIONINFO_H_
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct NtOsVersionInfo {
|
|
uint32_t dwOSVersionInfoSize;
|
|
uint32_t dwMajorVersion;
|
|
uint32_t dwMinorVersion;
|
|
uint32_t dwBuildNumber;
|
|
uint32_t dwPlatformId;
|
|
char16_t szCSDVersion[128];
|
|
uint16_t wServicePackMajor;
|
|
uint16_t wServicePackMinor;
|
|
uint16_t wSuiteMask;
|
|
uint8_t wProductType;
|
|
uint8_t wReserved;
|
|
};
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_OSVERSIONINFO_H_ */
|