diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-04 03:03:48 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-04 03:03:48 +0000 |
commit | 915af1e09366c891b4999055474831fc1c2e8be3 (patch) | |
tree | 48af5cbe181efc258469881cac1e84eb26e475e9 /src/ack.h | |
parent | fd06660e0b4e0e6635c80e3631cbf0df2fcbf4e6 (diff) | |
download | mpd-915af1e09366c891b4999055474831fc1c2e8be3.tar.gz mpd-915af1e09366c891b4999055474831fc1c2e8be3.tar.xz mpd-915af1e09366c891b4999055474831fc1c2e8be3.zip |
add ack.h and change format of error again
git-svn-id: https://svn.musicpd.org/mpd/trunk@1327 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/ack.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ack.h b/src/ack.h new file mode 100644 index 000000000..839452e90 --- /dev/null +++ b/src/ack.h @@ -0,0 +1,16 @@ +#ifndef ACK_H +#define ACK_H + +#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 + +#endif |