ViewVC Help
View File | Revision Log | View Changeset | Root Listing
root/Oni2/Daodan/MSVC/Daodan_Console.h
Revision: 567
Committed: Fri Jun 25 03:52:34 2010 UTC (15 years, 3 months ago) by gumby
Content type: text/x-chdr
File size: 663 byte(s)
Log Message:
Daodan MSVC

File Contents

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