1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/process_windows.go

15 lines
203 B
Go
Raw Normal View History

2014-04-23 21:38:13 +09:00
// +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
}