mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 10:22:23 -07:00
13 lines
274 B
Odin
13 lines
274 B
Odin
// +build windows
|
|
package win32
|
|
|
|
foreign import "system:winmm.lib"
|
|
|
|
|
|
@(default_calling_convention = "std")
|
|
foreign winmm {
|
|
@(link_name="timeBeginPeriod") time_begin_period :: proc(period: u32) -> u32 ---
|
|
|
|
@(link_name="timeGetTime") time_get_time :: proc() -> u32 ---
|
|
}
|