add ERR_VFS_DIR_END code

This was SVN commit r1384.
This commit is contained in:
janwas 2004-11-23 21:08:59 +00:00
parent 9a00cd11d5
commit 5857361da2

View File

@ -128,11 +128,14 @@ enum LibError
ERR_AGAIN = -1006, // try again later
ERR_VFS_PATH_LENGTH = -1007,
ERR_VFS_DIR_END = -1008,
ERR_LAST
};
#ifndef MIN
#define MIN(a, b) (((a) < (b))? (a) : (b))
#endif