2015-04-07 21:19:24 -05:00
|
|
|
// 7 april 2015
|
|
|
|
#include "uipriv.h"
|
|
|
|
|
2015-04-07 23:43:35 -05:00
|
|
|
void uiControlDestroy(uiControl *c)
|
|
|
|
{
|
|
|
|
(*(c->destroy))(c);
|
|
|
|
}
|
|
|
|
|
2015-04-07 21:19:24 -05:00
|
|
|
uintptr_t uiControlHandle(uiControl *c)
|
|
|
|
{
|
|
|
|
return (*(c->handle))(c);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO do this for the others
|