...

Source file src/github.com/Microsoft/go-winio/pkg/etw/newprovider_unsupported.go

Documentation: github.com/Microsoft/go-winio/pkg/etw

     1  //go:build windows && arm
     2  // +build windows,arm
     3  
     4  package etw
     5  
     6  // NewProviderWithID returns a nil provider on unsupported platforms.
     7  func NewProviderWithOptions(name string, options ...ProviderOpt) (provider *Provider, err error) {
     8  	return nil, nil
     9  }
    10  

View as plain text