Added EINIT, "Not initialized".

This commit is contained in:
Jonas 'Sortie' Termansen 2012-05-27 17:20:33 +02:00
parent e8d75643ea
commit 9905a2f2d6
2 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,7 @@
#define EAGAIN 43
#define EEOF 44
#define EBOUND 45
#define EINIT 46
#define EOPNOTSUPP ENOTSUP

View File

@ -83,6 +83,7 @@ namespace Maxsi
case EAGAIN: return (char*) "Resource temporarily unavailable";
case EEOF: return (char*) "End of file";
case EBOUND: return (char*) "Out of bounds";
case EINIT: return (char*) "Not initialized";
default: return (char*) "Unknown error condition";
}
}