分支自 DSP/ADSP21569/DSP-21569

wanglei
2024-04-07 cc0cf0e2c92b0fc690a75979fe49d1729b5798b7
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