mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-28 23:43:01 +00:00
724b1cd1a8
now it's safer
8 lines
154 B
C
8 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
|