macros/src/ui.h

15 lines
205 B
C
Raw Normal View History

2022-12-13 01:33:56 +01:00
#ifndef UI
#define UI
typedef struct {
char *name;
FILE *file;
char is_recording;
} ui_infos;
ui_infos * init_ui(char *name);
void free_ui(ui_infos *ptr);
int draw_ui(ui_infos *ptr);
#endif