forked from hallazzang/go-windows-programming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
42 lines (37 loc) · 973 Bytes
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package main
import (
"fmt"
"unsafe"
"github.com/hallazzang/go-windows-programming/pkg/win"
)
type processInfo struct {
id uint32
name string
sessionID uint32
}
func processList() ([]processInfo, error) {
var pProcessInfo *win.WTS_PROCESS_INFO
var count uint32
var ps []processInfo
if win.WTSEnumerateProcesses(win.WTS_CURRENT_SERVER_HANDLE, 0, 1, &pProcessInfo, &count) == 0 {
return nil, win.GetLastError()
}
defer win.WTSFreeMemory(unsafe.Pointer(pProcessInfo))
size := unsafe.Sizeof(win.WTS_PROCESS_INFO{})
for i := uint32(0); i < count; i++ {
p := *(*win.WTS_PROCESS_INFO)(unsafe.Pointer(uintptr(unsafe.Pointer(pProcessInfo)) + uintptr(size)*uintptr(i)))
ps = append(ps, processInfo{
id: p.ProcessId,
name: win.UTF16PtrToString(p.PProcessName),
sessionID: p.SessionId,
})
}
return ps, nil
}
func main() {
ps, err := processList()
if err != nil {
panic(err)
}
fmt.Printf("process list:\n%+v\n", ps)
}