14 lines
327 B
Go
14 lines
327 B
Go
//go:build windows
|
|
|
|
package sysutils
|
|
|
|
// GetIDState returns current ID/elevation information. This is a NO-OP on Windows.
|
|
func GetIDState() (ids IDState) {
|
|
return
|
|
}
|
|
|
|
// GetIDStateProc is like GetIDState but for an arbitrary PID. This is a NO-OP on Windows.
|
|
func GetIDStateProc(pid uint32) (ids IDState, err error) {
|
|
return
|
|
}
|