mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 12:03:41 +00:00
23 lines
616 B
C
23 lines
616 B
C
|
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_OSVERSIONINFO_H_
|
||
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_OSVERSIONINFO_H_
|
||
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||
|
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 /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_OSVERSIONINFO_H_ */
|