00001 /*header file for error numbers*/ 00002 00003 #ifndef _CORE_ERRNO_HPP 00004 #define _CORE_ERRNO_HPP 00005 00008 const int ESUCCESS = 1; 00009 const int EFAIL = -1; 00010 const int EINVAL = -2; 00011 const int EOUTOFMEMORY = -3; 00012 const int ENOTIMPL = -4; 00013 const int ESANITY = -5; 00014 00015 #endif