Prefix the error constants with ERR_

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15359 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nicolas Pennequin 2007-10-29 14:15:59 +00:00
parent 75eff7af5e
commit d400e23e38
3 changed files with 27 additions and 27 deletions

View file

@ -36,11 +36,11 @@ enum data_type {
};
/* Error return values */
#define HANDLE_NOT_FOUND -1
#define BUFFER_FULL -2
#define INVALID_VALUE -3
#define FILE_ERROR -4
#define DATA_NOT_READY -5
#define ERR_HANDLE_NOT_FOUND -1
#define ERR_BUFFER_FULL -2
#define ERR_INVALID_VALUE -3
#define ERR_FILE_ERROR -4
#define ERR_DATA_NOT_READY -5
/* Initialise the buffering subsystem */