mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-07 13:33:13 +00:00
11 lines
250 B
Odin
11 lines
250 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 ---
|
|
}
|