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

16 lines
323 B
Go

//go:build !windows
// +build !windows
package wca
import (
"github.com/go-ole/go-ole"
)
func mmdcGetCount(dc *IMMDeviceCollection, count *uint32) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}
func mmdcItem(dc *IMMDeviceCollection, id uint32, mmd **IMMDevice) (err error) {
return ole.NewError(ole.E_NOTIMPL)
}