Browse Source

sys/windows: add timeEndPeriod

hikari 3 years ago
parent
commit
b78f3a8069
1 changed files with 1 additions and 0 deletions
  1. 1 0
      core/sys/windows/winmm.odin

+ 1 - 0
core/sys/windows/winmm.odin

@@ -6,4 +6,5 @@ foreign import winmm "system:Winmm.lib"
 @(default_calling_convention="stdcall")
 @(default_calling_convention="stdcall")
 foreign winmm {
 foreign winmm {
 	timeBeginPeriod :: proc(uPeriod: UINT) -> MMRESULT ---
 	timeBeginPeriod :: proc(uPeriod: UINT) -> MMRESULT ---
+	timeEndPeriod :: proc(uPeriod: UINT) -> MMRESULT ---
 }
 }