mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 13:11:20 +00:00
19 lines
334 B
C
19 lines
334 B
C
|
#ifndef __sv_console_h
|
||
|
#define __sv_console_h
|
||
|
|
||
|
struct view_s;
|
||
|
|
||
|
typedef struct sv_view_s {
|
||
|
void *win;
|
||
|
void *obj;
|
||
|
void (*draw) (struct view_s *view);
|
||
|
void (*setgeometry) (struct view_s *view);
|
||
|
} sv_view_t;
|
||
|
|
||
|
typedef struct sv_sbar_s {
|
||
|
int width;
|
||
|
char *text;
|
||
|
} sv_sbar_t;
|
||
|
|
||
|
#endif//__sv_console_h
|