vendor: portmidi: simplify foreign import

This commit is contained in:
Sébastien Marie
2022-03-02 18:43:17 +00:00
parent 3145935d6b
commit d3f3528d1d
2 changed files with 9 additions and 3 deletions
+6 -2
View File
@@ -7,7 +7,11 @@ package portmidi
import "core:c"
when ODIN_OS == .Windows { foreign import lib "portmidi_s.lib" }
when ODIN_OS == .Windows {
foreign import lib "portmidi_s.lib"
} else {
foreign import lib "system:portmidi"
}
Queue :: distinct rawptr
@@ -118,4 +122,4 @@ foreign lib {
state, returns .NoError if successfully set overflow state.
*/
SetOverflow :: proc(queue: Queue) -> Error ---
}
}