mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
- 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
16 lines
444 B
C
16 lines
444 B
C
#ifndef COSMOPOLITAN_LIBC_NT_STRUCT_MEMORYSTATUSEX_H_
|
|
#define COSMOPOLITAN_LIBC_NT_STRUCT_MEMORYSTATUSEX_H_
|
|
|
|
struct NtMemoryStatusEx {
|
|
uint32_t dwLength;
|
|
uint32_t dwMemoryLoad;
|
|
uint64_t ullTotalPhys;
|
|
uint64_t ullAvailPhys;
|
|
uint64_t ullTotalPageFile;
|
|
uint64_t ullAvailPageFile;
|
|
uint64_t ullTotalVirtual;
|
|
uint64_t ullAvailVirtual;
|
|
uint64_t ullAvailExtendedVirtual;
|
|
};
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_NT_STRUCT_MEMORYSTATUSEX_H_ */
|