qipp
2025-11-07 1db34b4e65f72d8ae8b1f0efbc7a4395f9bbcae8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#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