libui/test/test.h

24 lines
501 B
C
Raw Normal View History

// 22 april 2015
2015-04-22 16:54:05 -05:00
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
2015-04-22 16:54:05 -05:00
#include <stdarg.h>
#include <string.h>
#include "../ui.h"
2015-04-22 16:54:05 -05:00
// main.c
extern void die(const char *, ...);
// spaced.c
extern void setSpaced(int);
extern uiWindow *newWindow(const char *title, int width, int height, int hasMenubar);
extern uiBox *newHorizontalBox(void);
extern uiBox *newVerticalBox(void);
extern uiTab *newTab(void);
2015-04-23 17:22:06 -05:00
// menus.c
extern void initMenus(void);
// page1.c
extern uiBox *makePage1(uiWindow *);