We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ecae8c commit 243d2ddCopy full SHA for 243d2dd
pkg/win/win.go
@@ -28,6 +28,6 @@ func WTSEnumerateProcesses(hServer uintptr, Reserved, Version uint32, ppProcessI
28
return int32(r1)
29
}
30
31
-func WTSFreeMemory(pMemory unsafe.Pointer) {
32
- procWTSFreeMemory.Call(uintptr(pMemory))
+func WTSFreeMemory(pMemory uintptr) {
+ procWTSFreeMemory.Call(pMemory)
33
0 commit comments