12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #define CON_TEXTSIZE 16384
- typedef struct
- {
- char text[CON_TEXTSIZE];
- int current;
- int x;
- int display;
- } console_t;
- extern console_t con_main;
- extern console_t con_chat;
- extern console_t *con;
- extern int con_ormask;
- extern int con_totallines;
- extern qboolean con_initialized;
- extern byte *con_chars;
- extern int con_notifylines;
- void Con_DrawCharacter (int cx, int line, int num);
- void Con_CheckResize (void);
- void Con_Init (void);
- void Con_DrawConsole (int lines);
- void Con_Print (char *txt);
- void Con_Printf (char *fmt, ...);
- void Con_DPrintf (char *fmt, ...);
- void Con_SafePrintf (char *fmt, ...);
- void Con_Clear_f (void);
- void Con_DrawNotify (void);
- void Con_ClearNotify (void);
- void Con_ToggleConsole_f (void);
- void Con_NotifyBox (char *text);
|