mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
15 lines
203 B
Go
15 lines
203 B
Go
![]() |
// +build windows
|
||
|
|
||
|
package gopsutil
|
||
|
|
||
|
func Pids() ([]int32, error) {
|
||
|
ret := make([]int32, 0)
|
||
|
|
||
|
return ret, nil
|
||
|
}
|
||
|
|
||
|
func NewProcess(pid int32) (*Process, error) {
|
||
|
p := &Process{Pid: pid}
|
||
|
return p, nil
|
||
|
}
|