瀏覽代碼

Merge pull request #1723 from ftphikari/master

sys/windows: add timeEndPeriod
Jeroen van Rijn 3 年之前
父節點
當前提交
e738e93da0
共有 1 個文件被更改,包括 1 次插入0 次删除
  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")
 foreign winmm {
 	timeBeginPeriod :: proc(uPeriod: UINT) -> MMRESULT ---
+	timeEndPeriod :: proc(uPeriod: UINT) -> MMRESULT ---
 }