AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 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