You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
189 B
C
12 lines
189 B
C
2 weeks ago
|
#ifndef CUIDEFINE_H
|
||
|
#define CUIDEFINE_H
|
||
|
|
||
|
enum CUI_DATA_TYPE {
|
||
|
CUI_DATA_TYPE_INT,
|
||
|
CUI_DATA_TYPE_DOUBLE,
|
||
|
CUI_DATA_TYPE_STRING,
|
||
|
CUI_DATA_TYPE_UNKNOW,
|
||
|
};
|
||
|
|
||
|
#endif // CUIDEFINE_H
|