libui/uipriv.h

13 lines
302 B
C
Raw Normal View History

2015-04-06 20:53:31 -05:00
// 6 april 2015
2015-04-07 18:08:39 -05:00
#include <stdlib.h>
2015-04-06 20:53:31 -05:00
#include "ui.h"
extern uiInitOptions options;
2015-04-07 22:40:18 -05:00
extern void *uiAlloc(size_t, const char *);
#define uiNew(T) ((T *) uiAlloc(sizeof (T), #T ))
extern void *uiRealloc(void *, size_t, const char *);
extern void uiFree(void *);
extern void complain(const char *, ...);