Files
Odin/core/sys/windows/winmm.odin
T
2022-04-15 19:18:22 +03:00

10 lines
194 B
Odin

// +build windows
package sys_windows
foreign import winmm "system:Winmm.lib"
@(default_calling_convention="stdcall")
foreign winmm {
timeBeginPeriod :: proc(uPeriod: UINT) -> MMRESULT ---
}