26 lines
331 B
C
26 lines
331 B
C
#ifndef DEFINES_H
|
|
#define DEFINES_H
|
|
|
|
|
|
|
|
#define GENERAL_MESSAGES_MAX_LOG_LINES 5000 //The number of lines of general status log we keep in the general status window (avoids fucking up because you know.... RAM)
|
|
|
|
enum eOtarcikGeneralReturns
|
|
{
|
|
RET_OK = 0,
|
|
RET_GENERAL_ERROR,
|
|
|
|
|
|
|
|
RET_MAX_ERROR
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // DEFINES_H
|
|
|
|
|
|
|