13 lines
150 B
C
13 lines
150 B
C
#ifndef ERRORS_H_
|
|
#define ERRORS_H_
|
|
|
|
#include <types.h>
|
|
|
|
#define E_OK 0
|
|
|
|
typedef int32 Error;
|
|
|
|
#define E_ISOK(e) ((e) == (E_OK))
|
|
|
|
#endif // ERRORS_H_
|