blob: 3b4a4830832acd604b1d3ee1d6ff73cc3c23ac24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef CONSOLE_H
#define CONSOLE_H
#include <defines.h>
extern char console_more;
extern char console_error[];
extern int file_script;
int console_parse_coords(char *txt, int *x, int *y, char *err);
int console_parse_type(char *txt, int *element, char *err);
int console_parse_partref(char *txt, int *which, char *err);
int process_command_old(pixel *vid_buf, char *console, char *console_error);
#endif
|