blob: c57ac209d4d9f78c895d45f49c2b2333717fbeeb (
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_sv.h
*/
#ifndef _CON_LIST_SV_H_
#define _CON_LIST_SV_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_SV_H_
|