#ifndef __ERRCODE_H_c26d32a9 #define __ERRCODE_H_c26d32a9 #include "typedefs.h" enum ErrStatus { SUCCESS = 0x0, ERR_PARAM, ERR_METHOD, ERR_PATH, ERR_NULLPTR, }; enum PTYPE { pint, //int type "1" pfloat, //float type "1.0" pstring, //string type ""1"" pbool, }; #endif //__ERRCODE_H_c26d32a9