libui-ffi 0.4.0

Easy to build low-level bindings to 'libui-ng'
Documentation
1
2
3
4
5
6
7
8
9
10
#include "../ui.h"
#include "uipriv.h"

void uiFreeTableSelection(uiTableSelection *s)
{
	if (s->Rows != NULL)
		uiprivFree(s->Rows);
	uiprivFree(s);
}