summaryrefslogtreecommitdiff
path: root/new/uipriv.h
blob: 7cc17956a4bbc087dd1d3cfbf50c65b74958cedf (plain)
1
2
3
4
5
6
7
8
9
10
// 6 april 2015
#include <stdlib.h>
#include "ui.h"

extern uiInitOptions options;

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 *);