00001 00008 #ifndef __VVCONSTANTS_H__ 00009 #define __VVCONSTANTS_H__ 00010 00011 00012 /* 00013 * Function status return values 00014 */ 00015 #ifndef VV_TRUE 00016 #define VV_TRUE 1 /* Boolean states */ 00017 #endif 00018 #ifndef VV_FALSE 00019 #define VV_FALSE 0 /* Boolean states */ 00020 #endif 00021 #ifndef VV_OK 00022 #define VV_OK 0 00023 #endif 00024 #ifndef VV_ERR 00025 #define VV_ERR -1 00026 #endif 00027 #ifndef VV_RETRY 00028 #define VV_RETRY -2 00029 #endif 00030 00031 00032 #endif // __VVCONSTANTS_H__
1.3.2