2021-03-18 17:23:56 +00:00
|
|
|
// Copyright (c) 2021 Tailscale Inc & AUTHORS All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package winutil
|
|
|
|
|
2022-02-02 17:55:32 +00:00
|
|
|
const regBase = ``
|
|
|
|
|
|
|
|
func getRegString(name, defval string) string { return defval }
|
2021-03-18 17:23:56 +00:00
|
|
|
|
2022-02-02 17:55:32 +00:00
|
|
|
func getRegInteger(name string, defval uint64) uint64 { return defval }
|
2021-09-28 22:29:47 +00:00
|
|
|
|
2022-02-02 17:55:32 +00:00
|
|
|
func isSIDValidPrincipal(uid string) bool { return false }
|