src/console_func.h
author translators
Tue, 09 Sep 2008 17:40:23 +0000
changeset 10100 115b73724f1a
parent 9426 a77c8a4abcf5
permissions -rw-r--r--
(svn r14282) -Update: WebTranslator2 update to 2008-09-09 17:38:39
czech - 1 fixed, 7 changed by Hadez (7), joeprusa (1)
danish - 61 fixed, 6 changed by ThomasA (28), MiR (39)
dutch - 6 fixed by habell (5), webfreakz (1)
estonian - 1 fixed by kristjans (1)
finnish - 66 fixed by habazi (66)
french - 2 fixed, 2 changed by glx (4)
galician - 14 fixed by Condex (14)
german - 63 fixed, 16 changed by sulai (41), dih (38)
italian - 1 fixed, 1 changed by lorenzodv (2)
piglatin - 27 fixed by adammw (27)
romanian - 57 fixed by kneekoo (57)
russian - 13 fixed by Smoky555 (13)
slovenian - 6 fixed by Necrolyte (6)
spanish - 9 fixed by eusebio (9)
ukrainian - 6 fixed by mad (6)
9336
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     1
/* $Id$ */
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     2
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     3
/** @file console_func.h Console functions used outside of the console code. */
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     4
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     5
#ifndef CONSOLE_FUNC_H
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     6
#define CONSOLE_FUNC_H
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     7
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     8
#include "console_type.h"
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
     9
9337
ab6e0234bacc (svn r13229) -Codechange: replace some global variables that are only initialised once and always with the same value with enums.
rubidium
parents: 9336
diff changeset
    10
/* console modes */
9336
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    11
extern IConsoleModes _iconsole_mode;
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    12
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    13
/* console functions */
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    14
void IConsoleInit();
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    15
void IConsoleFree();
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    16
void IConsoleClose();
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    17
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    18
/* console output */
9337
ab6e0234bacc (svn r13229) -Codechange: replace some global variables that are only initialised once and always with the same value with enums.
rubidium
parents: 9336
diff changeset
    19
void IConsolePrint(ConsoleColour color_code, const char *string);
ab6e0234bacc (svn r13229) -Codechange: replace some global variables that are only initialised once and always with the same value with enums.
rubidium
parents: 9336
diff changeset
    20
void CDECL IConsolePrintF(ConsoleColour color_code, const char *s, ...);
9336
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    21
void IConsoleDebug(const char *dbg, const char *string);
9426
a77c8a4abcf5 (svn r13341) -Codechange: make most of the network settings configurable via the patch command.
rubidium
parents: 9337
diff changeset
    22
void IConsoleWarning(const char *string);
a77c8a4abcf5 (svn r13341) -Codechange: make most of the network settings configurable via the patch command.
rubidium
parents: 9337
diff changeset
    23
void IConsoleError(const char *string);
9336
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    24
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    25
/* Parser */
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    26
void IConsoleCmdExec(const char *cmdstr);
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    27
6baad5b3033d (svn r13228) -Codechange: split console.h.
rubidium
parents:
diff changeset
    28
#endif /* CONSOLE_FUNC_H */