summaryrefslogtreecommitdiff
path: root/new/uipriv.h
blob: f028590fa98e896b2dd637ec358867cf413cdf6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// 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 *);

extern void updateParent(uintptr_t);