mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 02:12:22 -07:00
8 lines
207 B
Odin
8 lines
207 B
Odin
package sys_windows
|
|
|
|
foreign import ntdll_lib "system:ntdll.lib"
|
|
|
|
@(default_calling_convention="std")
|
|
foreign ntdll_lib {
|
|
RtlGetVersion :: proc(lpVersionInformation: ^OSVERSIONINFOEXW) -> NTSTATUS ---;
|
|
} |