blob: 2b5a7302d1a2420278bbcf7dbc44f0c417dcbc3e (
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
34
|
/*
* PARSEC HEADER: con_list.h
*/
#ifndef _CON_LIST_H_
#define _CON_LIST_H_
// external functions
void Cmd_ShipInfo();
void Cmd_ListTypes();
void Cmd_ListClasses();
void Cmd_ListSayMacros();
void Cmd_ListKeyBindings();
void Cmd_ListKeyFunctions();
void Cmd_ListVidModes();
void Cmd_ListBinaryDemos();
int Cmd_ListExternalCommands( char *command );
int Cmd_ListDataTable( char *command );
int Cmd_ListIntCommands( char *command );
int Cmd_ListStdCommands( char *command );
// external variables
extern int await_keypress;
extern void (*com_cont_func)();
extern int cur_vis_conlines;
#endif // _CON_LIST_H_
|