mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-10 06:53:03 +00:00
Here is the windows documentation for it: https://docs.microsoft.com/en-us/windows/win32/api/timeapi/nf-timeapi-timegettime
12 lines
290 B
Odin
12 lines
290 B
Odin
// +build windows
|
|
package sys_windows
|
|
|
|
foreign import winmm "system:Winmm.lib"
|
|
|
|
@(default_calling_convention="stdcall")
|
|
foreign winmm {
|
|
timeBeginPeriod :: proc(uPeriod: UINT) -> MMRESULT ---
|
|
timeEndPeriod :: proc(uPeriod: UINT) -> MMRESULT ---
|
|
timeGetTime :: proc() -> DWORD ---
|
|
}
|