mirror of
https://github.com/rwinkhart/go-winio.git
synced 2026-09-01 06:46:48 -04:00
14 lines
298 B
Go
14 lines
298 B
Go
// +build windows
|
|
// +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
|
|
}
|