Files
go-winio/pkg/etw/newprovider_unsupported.go
T
2019-05-08 16:43:22 -07:00

13 lines
280 B
Go

// +build arm
package etw
import (
"github.com/Microsoft/go-winio/pkg/guid"
)
// NewProviderWithID returns a nil provider on unsupported platforms.
func NewProviderWithID(name string, id guid.GUID, callback EnableCallback) (provider *Provider, err error) {
return nil, nil
}