mirror of
https://github.com/rwinkhart/go-winio.git
synced 2026-08-28 04:46:50 -04:00
13 lines
288 B
Go
13 lines
288 B
Go
// +build windows 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
|
|
}
|