mirror of
https://github.com/tailscale/tailscale.git
synced 2024-11-26 03:25:35 +00:00
2d5db90161
Helps to use the right GOOS after refactoring, sigh. Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
25 lines
667 B
Go
25 lines
667 B
Go
// 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.
|
|
|
|
// +build windows
|
|
|
|
// Package winuntil contains misc Windows/win32 helper functions.
|
|
package winutil
|
|
|
|
import (
|
|
"golang.org/x/sys/windows"
|
|
)
|
|
|
|
// GetDesktopPID searches the PID of the process that's running the
|
|
// currently active desktop and whether it was found.
|
|
// Usually the PID will be for explorer.exe.
|
|
func GetDesktopPID() (pid uint32, ok bool) {
|
|
hwnd := windows.GetShellWindow()
|
|
if hwnd == 0 {
|
|
return 0, false
|
|
}
|
|
windows.GetWindowThreadProcessId(hwnd, &pid)
|
|
return pid, pid != 0
|
|
}
|