7 references to Kernel32
System.Runtime.Caching (7)
_generated\0\LibraryImports.g.cs (1)
7
internal static unsafe extern partial global::Interop.BOOL GlobalMemoryStatusEx(global::Interop.
Kernel32
.MEMORYSTATUSEX* lpBuffer);
System\Runtime\Caching\MemoryMonitor.Windows.cs (3)
17
Interop.
Kernel32
.MEMORYSTATUSEX memoryStatus = default;
18
memoryStatus.dwLength = (uint)sizeof(Interop.
Kernel32
.MEMORYSTATUSEX);
19
if (Interop.
Kernel32
.GlobalMemoryStatusEx(&memoryStatus) != Interop.BOOL.FALSE)
System\Runtime\Caching\PhysicalMemoryMonitor.Windows.cs (3)
15
Interop.
Kernel32
.MEMORYSTATUSEX memoryStatus = default;
16
memoryStatus.dwLength = (uint)sizeof(Interop.
Kernel32
.MEMORYSTATUSEX);
17
if (Interop.
Kernel32
.GlobalMemoryStatusEx(&memoryStatus) == Interop.BOOL.FALSE)