mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
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:
parent
75eff7af5e
commit
d400e23e38
3 changed files with 27 additions and 27 deletions
|
@ -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 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue