We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc5d63d commit 0ea43fdCopy full SHA for 0ea43fd
pkg/sys/process.go
@@ -19,9 +19,10 @@
19
package sys
20
21
import (
22
+ "unsafe"
23
+
24
"golang.org/x/sys/windows"
25
"golang.org/x/sys/windows/svc"
- "unsafe"
26
)
27
28
const (
@@ -31,6 +32,11 @@ const (
31
32
ProcessStatusStillActive uint32 = 259
33
34
35
+// ModuleHandleFromAddress is the flag of the GetModuleHandleEx
36
+// function parameter that indicates the module handle is obtained
37
+// from the address
38
+const ModuleHandleFromAddress = 0x00000004
39
40
// ProcessProtectionInformation is the information class that returns a
41
// value indicating the type of protected process and the protected process
42
// signer.
0 commit comments