aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/service/errors.go
blob: 04cedb45e993761e856da8ac91237724630465ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* SPDX-License-Identifier: MIT
 *
 * Copyright (C) 2017-2019 WireGuard LLC. All Rights Reserved.
 */

package service

const (
	ERROR_LOG_CONTAINER_OPEN_FAILED uint32 = 0x000019F1
	ERROR_INVALID_PARAMETER         uint32 = 0x00000057
	ERROR_OPEN_FAILED               uint32 = 0x0000006E
	ERROR_ADAP_HDW_ERR              uint32 = 0x00000039
	ERROR_PIPE_LISTENING            uint32 = 0x00000218
	ERROR_BAD_LOGON_SESSION_STATE   uint32 = 0x00000555
	ERROR_BAD_PATHNAME              uint32 = 0x000000A1
	ERROR_FILE_NOT_FOUND            uint32 = 0x00000002
	ERROR_SERVER_SID_MISMATCH       uint32 = 0x00000274
	ERROR_NETWORK_BUSY              uint32 = 0x00000036
	ERROR_NO_TRACKING_SERVICE       uint32 = 0x00000494
	ERROR_OBJECT_ALREADY_EXISTS     uint32 = 0x00001392
	ERROR_SERVICE_DOES_NOT_EXIST    uint32 = 0x00000424
	ERROR_SERVICE_MARKED_FOR_DELETE uint32 = 0x00000430
)