Ignore:
Timestamp:
Mar 7, 2013, 6:26:13 PM (12 years ago)
Author:
alloc
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Daodan/src/Daodan_Console.h

    r677 r692  
    1 #pragma once
    21#ifndef DAODAN_CONSOLE_H
    32#define DAODAN_CONSOLE_H
    4 
    5 //#include <stdint.h>
    63
    74#include "Daodan.h"
    85
    96typedef 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;
    1411} RGBA;
    1512
    1613
    1714typedef 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;
    2219} ARGB;
    2320
     
    3128extern TStColorFormattingCharacter DDrDSayColors[];
    3229
    33 #ifdef __cplusplus
    34 extern "C"
    35 #endif
    3630void DDrConsole_Print(const char* text);
    3731
    38 #ifdef __cplusplus
    39 extern "C"
    40 #endif
    4132void DDrConsole_PrintColored(const char* text, int priority, RGBA color, RGBA shade);
    4233
    43 #ifdef __cplusplus
    44 extern "C"
    45 #endif
    4634void DDrConsole_PrintF(const char* fmt, ...);
    4735
Note: See TracChangeset for help on using the changeset viewer.