We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02434e9 commit b55acc2Copy full SHA for b55acc2
lib/std/os/windows/kernel32.zig
@@ -43,6 +43,7 @@ const WIN32_FIND_DATAW = windows.WIN32_FIND_DATAW;
43
const Win32Error = windows.Win32Error;
44
const WINAPI = windows.WINAPI;
45
const WORD = windows.WORD;
46
+const SYSTEM_INFO = windows.SYSTEM_INFO;
47
48
// I/O - Filesystem
49
@@ -671,3 +672,7 @@ pub extern "kernel32" fn SetLastError(
671
672
pub extern "kernel32" fn GetSystemTimeAsFileTime(
673
lpSystemTimeAsFileTime: *FILETIME,
674
) callconv(WINAPI) void;
675
+
676
+pub extern "kernel32" fn GetSystemInfo(
677
+ lpSystemInfo: *SYSTEM_INFO,
678
+) callconv(WINAPI) void;
0 commit comments