quakeforge/include/sv_console.h

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