Rework shared headers
This commit is contained in:
18
share/errors.h
Normal file
18
share/errors.h
Normal file
@ -0,0 +1,18 @@
|
||||
#ifndef ERRORS_H_
|
||||
#define ERRORS_H_
|
||||
|
||||
enum {
|
||||
E_OK = 0,
|
||||
E_NOMEMORY = -1,
|
||||
E_UNKNOWN_FSTYPE = -2,
|
||||
E_NOENTRY = -3,
|
||||
E_OUTOFBOUNDS = -4,
|
||||
E_UNKNOWN_SDTYPE = -5,
|
||||
E_TODO = -6,
|
||||
E_BADIO = -7,
|
||||
E_BADSYSCALL = -8,
|
||||
E_DOSCHEDULING = -9,
|
||||
E_INVALIDARGUMENT = -10,
|
||||
};
|
||||
|
||||
#endif // ERRORS_H_
|
Reference in New Issue
Block a user