aboutsummaryrefslogtreecommitdiff
path: root/engines/avalanche/logger.h
blob: 016bfb625835572d06a002b82d0c79bb3338406b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef __logger_h__
#define __logger_h__


void log_setup(string name, boolean printing);

void log_divider();    /* Prints the divider sign. */

void log_command(string x);      /* Prints a command */

void log_scrollchar(string x);      /* print one character */

void log_italic();

void log_roman();

void log_epsonroman();

void log_scrollline();    /* Set up a line for the scroll driver */

void log_scrollendline(boolean centred);

void log_bubbleline(byte linenum,byte whom, string x);

void log_newline();

void log_newroom(string where);

void log_aside(string what);

void log_score(word credit,word now);

#endif