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