aboutsummaryrefslogtreecommitdiff
path: root/pkg/windows/const.go
blob: 4c4fbe601fa479dabef235aee0c5c5dae8b7a82b (plain)
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
package windows

const (
	// Windows error codes
	ERROR_FILE_NOT_FOUND          uint32 = 0x00000002
	ERROR_SERVICE_REQUEST_TIMEOUT uint32 = 0x0000041d
	ERROR_SERVICE_DOES_NOT_EXIST  uint32 = 0x00000424
	ERROR_SERVICE_NOT_ACTIVE      uint32 = 0x00000426

	// Windows service/scm constants
	SERVICE_BOOT_START   uint32 = 0x00000000
	SERVICE_SYSTEM_START uint32 = 0x00000001
	SERVICE_AUTO_START   uint32 = 0x00000002
	SERVICE_DEMAND_START uint32 = 0x00000003
	SERVICE_DISABLED     uint32 = 0x00000004

	// https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-scmr/4e91ff36-ab5f-49ed-a43d-a308e72b0b3c
	SERVICE_CONTINUE_PENDING uint32 = 0x00000005
	SERVICE_PAUSE_PENDING    uint32 = 0x00000006
	SERVICE_PAUSED           uint32 = 0x00000007
	SERVICE_RUNNING          uint32 = 0x00000004
	SERVICE_START_PENDING    uint32 = 0x00000002
	SERVICE_STOP_PENDING     uint32 = 0x00000003
	SERVICE_STOPPED          uint32 = 0x00000001

	SERVICE_WIN32_OWN_PROCESS uint32 = 0x00000010

	SERVICE_CONTROL_STOP      uint32 = 0x00000001
	SC_MANAGER_CREATE_SERVICE uint32 = 0x00000002

	// https://learn.microsoft.com/en-us/windows/win32/services/service-security-and-access-rights
	SERVICE_QUERY_CONFIG  uint32 = 0x00000001
	SERVICE_CHANGE_CONFIG uint32 = 0x00000002
	SERVICE_START         uint32 = 0x00000010
	SERVICE_STOP          uint32 = 0x00000020
	SERVICE_DELETE        uint32 = 0x00010000 // special permission
)