go-wca/pkg/wca/ISimpleAudioVolume_func.go
Yoshiyuki Koyanagi 53a62d71d2 Apply go fmt
2023-03-04 15:43:43 +09:00

22 lines
581 B
Go

//go:build !windows
// +build !windows
package wca
import "github.com/go-ole/go-ole"
func savSetMasterVolume(sav *ISimpleAudioVolume, level float32, eventContext *ole.GUID) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}
func savGetMasterVolume(sav *ISimpleAudioVolume, level *float32) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}
func savSetMute(sav *ISimpleAudioVolume, mute bool, eventContext *ole.GUID) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}
func savGetMute(sav *ISimpleAudioVolume, mute *bool) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}