blob: a7fcc5f0e9e11c2850e2b6525e4e36476b15e4bc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 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
|