source: Daodan/MSVC/Daodan_Console.h@ 582

Last change on this file since 582 was 567, checked in by gumby, 14 years ago

Daodan MSVC

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