分支自 DSP/ADSP21569/DSP-21569

graydon
2024-02-28 420778fcee054257d540cf24fbf1b1e3f9fc0d9f
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