aboutsummaryrefslogtreecommitdiff
path: root/src/ack.h
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-06-14 21:27:39 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-06-14 21:27:39 +0000
commitde314b61b5214fff83508c3171bcb3f7ebf0a3ae (patch)
tree3f4b2f6459bd1b974bb6089bf07b5b150194f776 /src/ack.h
parent9c1e088ce54304b24927d712c06a138e0a5df1a6 (diff)
change ACK error codes
git-svn-id: https://svn.musicpd.org/mpd/trunk@1484 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/ack.h')
-rw-r--r--src/ack.h16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/ack.h b/src/ack.h
index b1ae0d6d..a7fcc5f0 100644
--- a/src/ack.h
+++ b/src/ack.h
@@ -1,17 +1,19 @@
#ifndef ACK_H
#define ACK_H
+/* Common Errors */
#define ACK_ERROR_NOT_LIST 1
#define ACK_ERROR_ARG 2
#define ACK_ERROR_PASSWORD 3
#define ACK_ERROR_PERMISSION 4
#define ACK_ERROR_UNKNOWN 5
-#define ACK_ERROR_NO_EXIST 6
-#define ACK_ERROR_PLAYLIST_MAX 7
-#define ACK_ERROR_SYSTEM 8
-#define ACK_ERROR_PLAYLIST_LOAD 9
-#define ACK_ERROR_UPDATE_ALREADY 10
-#define ACK_ERROR_PLAYER_SYNC 11
-#define ACK_ERROR_EXIST 12
+
+#define ACK_ERROR_NO_EXIST 50
+#define ACK_ERROR_PLAYLIST_MAX 51
+#define ACK_ERROR_SYSTEM 52
+#define ACK_ERROR_PLAYLIST_LOAD 53
+#define ACK_ERROR_UPDATE_ALREADY 54
+#define ACK_ERROR_PLAYER_SYNC 55
+#define ACK_ERROR_EXIST 56
#endif