mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-15 18:32:22 -07:00
11 lines
189 B
Odin
11 lines
189 B
Odin
// +build windows
|
|
package win32
|
|
|
|
foreign import "system:winmm.lib"
|
|
|
|
|
|
@(default_calling_convention = "std")
|
|
foreign winmm {
|
|
@(link_name="timeGetTime") time_get_time :: proc() -> u32 ---;
|
|
}
|