返回 DeepSeek-Reasonix
update_owner.go
根目录 / desktop / update_owner.go
1 package main
2
3 import "os"
4
5 func windowsUpdateOwnerPID() int {
6 if hostRPCRequested(os.Args[1:]) {
7 return os.Getppid()
8 }
9 return os.Getpid()
10 }
11
11 lines GO