10 references to Interop
System.Runtime.Caching (10)
_generated\0\LibraryImports.g.cs (2)
7
internal static unsafe extern partial global::
Interop
.BOOL GlobalMemoryStatusEx(global::
Interop
.Kernel32.MEMORYSTATUSEX* lpBuffer);
System\Runtime\Caching\MemoryMonitor.Windows.cs (4)
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 (4)
15
Interop
.Kernel32.MEMORYSTATUSEX memoryStatus = default;
16
memoryStatus.dwLength = (uint)sizeof(
Interop
.Kernel32.MEMORYSTATUSEX);
17
if (
Interop
.Kernel32.GlobalMemoryStatusEx(&memoryStatus) ==
Interop
.BOOL.FALSE)