aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/service/errors.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2019-02-25 18:47:03 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2019-02-28 08:05:02 +0100
commitab3263502a3eb2ba008e7aab61709cb11c8aac1e (patch)
tree2184c0d2782f81ace9b2e78e4bbc554a534fc393 /service/errors.go
parentconf: introduce configuration management (diff)
downloadwireguard-windows-ab3263502a3eb2ba008e7aab61709cb11c8aac1e.tar.xz
wireguard-windows-ab3263502a3eb2ba008e7aab61709cb11c8aac1e.zip
service: introduce base of services
Diffstat (limited to 'service/errors.go')
-rw-r--r--service/errors.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/service/errors.go b/service/errors.go
new file mode 100644
index 00000000..b6566d00
--- /dev/null
+++ b/service/errors.go
@@ -0,0 +1,19 @@
+/* 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
+)