src/console_type.h
author belugas
Tue, 17 Jun 2008 02:25:45 +0000
changeset 10986 02e4a6f13972
parent 10685 955ddec7961e
permissions -rw-r--r--
(svn r13540) -Codechange: Less a magic number and a more adaptable code
/* $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 */