33 lines
442 B
C
33 lines
442 B
C
/**
|
|
* Copyright (c) 2014, Miguel Angel Astor Romero. All rights reserved.
|
|
* See the file LICENSE for more details.
|
|
*/
|
|
|
|
#ifndef STATE_CONSTS_H
|
|
#define STATE_CONSTS_H
|
|
|
|
static const int DEBUG = 1;
|
|
#define F_SEP "/"
|
|
|
|
enum COLORS {
|
|
BAR_COLOR = 1,
|
|
BSC_COLOR,
|
|
HLT_COLOR,
|
|
OFF_COLOR,
|
|
DIM_COLOR,
|
|
LIT_COLOR,
|
|
GUI_COLOR,
|
|
EMP_COLOR,
|
|
DW_COLOR,
|
|
SW_COLOR,
|
|
SN_COLOR,
|
|
GR_COLOR,
|
|
FR_COLOR,
|
|
HL_COLOR,
|
|
MN_COLOR,
|
|
VOID_COLOR,
|
|
IND_COLOR
|
|
};
|
|
|
|
#endif
|