mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-28 23:43:01 +00:00
9 lines
154 B
C
9 lines
154 B
C
|
#ifndef _DATA_ERRORS_H
|
||
|
#define _DATA_ERRORS_H
|
||
|
enum DivDataErrors {
|
||
|
DIV_DATA_SUCCESS=0,
|
||
|
DIV_DATA_INVALID_HEADER=1,
|
||
|
DIV_DATA_INVALID_DATA=2
|
||
|
};
|
||
|
#endif
|