00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #ifndef __HI_RETURN_CODES_H__
00018 #define __HI_RETURN_CODES_H__
00019
00020 #include "hi_include.h"
00021
00022 #define HI_BOOL_FALSE 0
00023 #define HI_SUCCESS 0
00024
00025
00026
00027
00028 #define HI_BOOL_TRUE 1
00029 #define HI_NONFATAL_ERR 1
00030 #define HI_OUT_OF_BOUNDS 2
00031
00032
00033
00034
00035 #define HI_FATAL_ERR -1
00036 #define HI_INVALID_ARG -2
00037 #define HI_MEM_ALLOC_FAIL -3
00038 #define HI_NOT_FOUND -4
00039 #define HI_INVALID_FILE -5
00040
00041 #endif