mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-21 21:24:59 -07:00
10 lines
194 B
Odin
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 ---
|
|
}
|