Changeset 692 for Daodan/src/Daodan_Console.h
- Timestamp:
- Mar 7, 2013, 6:26:13 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Daodan/src/Daodan_Console.h
r677 r692 1 #pragma once2 1 #ifndef DAODAN_CONSOLE_H 3 2 #define DAODAN_CONSOLE_H 4 5 //#include <stdint.h>6 3 7 4 #include "Daodan.h" 8 5 9 6 typedef struct { 10 char B;11 char G;12 char R;13 char A;7 char B; 8 char G; 9 char R; 10 char A; 14 11 } RGBA; 15 12 16 13 17 14 typedef struct { 18 char A;19 char R;20 char G;21 char B;15 char A; 16 char R; 17 char G; 18 char B; 22 19 } ARGB; 23 20 … … 31 28 extern TStColorFormattingCharacter DDrDSayColors[]; 32 29 33 #ifdef __cplusplus34 extern "C"35 #endif36 30 void DDrConsole_Print(const char* text); 37 31 38 #ifdef __cplusplus39 extern "C"40 #endif41 32 void DDrConsole_PrintColored(const char* text, int priority, RGBA color, RGBA shade); 42 33 43 #ifdef __cplusplus44 extern "C"45 #endif46 34 void DDrConsole_PrintF(const char* fmt, ...); 47 35
Note:
See TracChangeset
for help on using the changeset viewer.