Files
Odin/core/sys/windows/winmm.odin
2022-09-10 16:54:34 +04:00

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 ---
}