diff options
| author | hikari <ftphikari@gmail.com> | 2022-04-15 19:18:22 +0300 |
|---|---|---|
| committer | hikari <ftphikari@gmail.com> | 2022-04-15 19:18:22 +0300 |
| commit | d3fbf36df7cddf2cf69f7d761ccf4dfea863a40c (patch) | |
| tree | fa743250f765ca94643ed2115d33c6802335e4b4 /core/sys | |
| parent | de819cff94abe0da859cb08ed9035a3e57915164 (diff) | |
sys/windows: add winmm bindings file
Diffstat (limited to 'core/sys')
| -rw-r--r-- | core/sys/windows/winmm.odin | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/sys/windows/winmm.odin b/core/sys/windows/winmm.odin new file mode 100644 index 000000000..6d3fc409e --- /dev/null +++ b/core/sys/windows/winmm.odin @@ -0,0 +1,9 @@ +// +build windows +package sys_windows + +foreign import winmm "system:Winmm.lib" + +@(default_calling_convention="stdcall") +foreign winmm { + timeBeginPeriod :: proc(uPeriod: UINT) -> MMRESULT --- +} |