-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconsole.h
More file actions
27 lines (24 loc) · 856 Bytes
/
Copy pathconsole.h
File metadata and controls
27 lines (24 loc) · 856 Bytes
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
//
// console
//
extern int con_totallines;
extern int con_backscroll;
extern bool con_forcedup; // because no entities to refresh
extern bool con_initialized;
extern byte *con_chars;
extern int con_notifylines; // scan lines to clear for notify lines
void Con_DrawCharacter (int cx, int line, int num);
void Con_CheckResize (void);
void Con_Init (void);
void Con_DrawConsole (int lines, bool drawinput);
#pragma varargck argpos Con_Printf 1
void Con_Printf (char *fmt, ...);
#pragma varargck argpos Con_DPrintf 1
void Con_DPrintf (char *fmt, ...);
void Con_Clear_f (cmd_t *c);
void Con_DrawNotify (void);
void Con_ClearNotify (void);
void Con_ToggleConsole_f (cmd_t *c);
void Con_AddObject(char *name, void *obj);
void *Con_FindObject(char *name);
int Con_SearchObject(const char *prefix, int len, void (*f)(const char *, void *, void *), void *aux);