mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-05 20:50:43 +00:00
18 lines
334 B
C
18 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
|