src/console_type.h
author rubidium
Sat, 24 May 2008 10:35:15 +0000
changeset 10685 955ddec7961e
parent 10684 7cc2278c2ac0
permissions -rw-r--r--
(svn r13229) -Codechange: replace some global variables that are only initialised once and always with the same value with enums.
/* $Id$ */

/** @file console_type.h Globally used console related types. */

#ifndef CONSOLE_TYPE_H
#define CONSOLE_TYPE_H

enum IConsoleModes {
	ICONSOLE_FULL,
	ICONSOLE_OPENED,
	ICONSOLE_CLOSED
};

enum ConsoleColour {
	CC_DEFAULT =  1,
	CC_ERROR   =  3,
	CC_WARNING = 13,
	CC_INFO    =  8,
	CC_DEBUG   =  5,
	CC_COMMAND =  2,
	CC_WHITE   = 12,
};

#endif /* CONSOLE_TYPE_H */