source: Daodan/src/Daodan_Console.h@ 853

Last change on this file since 853 was 692, checked in by alloc, 12 years ago

Daodan: Lots of cleanups (mostly unnecessary includes removed, empty files deleted, case of filenames corrected)

File size: 638 bytes
RevLine 
[477]1#ifndef DAODAN_CONSOLE_H
2#define DAODAN_CONSOLE_H
[437]3
4#include "Daodan.h"
5
[446]6typedef struct {
[692]7 char B;
8 char G;
9 char R;
10 char A;
[446]11} RGBA;
12
[476]13
14typedef struct {
[692]15 char A;
16 char R;
17 char G;
18 char B;
[476]19} ARGB;
20
21typedef struct {
22 char Char;
[677]23 short ignored;
[476]24 int Color; //ARGB Color;
25} TStColorFormattingCharacter;
26
27extern TStColorFormattingCharacter* TStColorFormattingCharacters;
28extern TStColorFormattingCharacter DDrDSayColors[];
[677]29
[437]30void DDrConsole_Print(const char* text);
[677]31
[446]32void DDrConsole_PrintColored(const char* text, int priority, RGBA color, RGBA shade);
[677]33
[437]34void DDrConsole_PrintF(const char* fmt, ...);
35
36#endif
Note: See TracBrowser for help on using the repository browser.