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

26 lines
709 B
Go

//go:build !windows
// +build !windows
package wca
import "github.com/go-ole/go-ole"
func asc2GetSessionIdentifier(asc2 *IAudioSessionControl2, retVal *string) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}
func asc2GetSessionInstanceIdentifier(asc2 *IAudioSessionControl2, retVal *string) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}
func asc2GetProcessId(asc2 *IAudioSessionControl2, retVal *uint32) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}
func asc2IsSystemSoundsSession(asc2 *IAudioSessionControl2) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}
func asc2SetDuckingPreference(asc2 *IAudioSessionControl2, optOut bool) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}