blob: ad03c490869e1ea3f162002718e11882e84a19c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// 7 april 2015
#include "uipriv.h"
void uiControlDestroy(uiControl *c)
{
(*(c->destroy))(c);
}
uintptr_t uiControlHandle(uiControl *c)
{
return (*(c->handle))(c);
}
// TODO do this for the others
|