1// +build arm
2
3package etw
4
5import (
6	"github.com/Microsoft/go-winio/pkg/guid"
7)
8
9// NewProviderWithID returns a nil provider on unsupported platforms.
10func NewProviderWithID(name string, id guid.GUID, callback EnableCallback) (provider *Provider, err error) {
11	return nil, nil
12}
13