Remote Kind field now exported.

Kind fields/methods now exported

vmRem renamed vm in examples/tests. prefer short variable name.

minor version bump
This commit is contained in:
onyx-and-iris
2022-07-18 16:23:15 +01:00
parent 1af67bb219
commit 76e6d3cba7
11 changed files with 154 additions and 154 deletions

View File

@@ -9,18 +9,18 @@ import (
)
var (
vmRem = voicemeeter.NewRemote("potato")
vm = voicemeeter.NewRemote("potato")
)
func TestMain(m *testing.M) {
vmRem.Login()
vm.Login()
code := m.Run()
vmRem.Logout()
vm.Logout()
os.Exit(code)
}
func sync() {
time.Sleep(30 * time.Millisecond)
for vmRem.Pdirty() || vmRem.Mdirty() {
for vm.Pdirty() || vm.Mdirty() {
}
}