mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-30 01:44:36 +00:00
9 lines
224 B
Odin
9 lines
224 B
Odin
// +build windows
|
|
package sys_windows
|
|
|
|
foreign import ntdll_lib "system:ntdll.lib"
|
|
|
|
@(default_calling_convention="system")
|
|
foreign ntdll_lib {
|
|
RtlGetVersion :: proc(lpVersionInformation: ^OSVERSIONINFOEXW) -> NTSTATUS ---
|
|
} |