#ifndef LABEL_H
#define LABEL_H
#include "toolkit.h"
#ifdef __cplusplus
extern "C" {
#endif
UI_IMPORT UIWIDGET __stdcall UIlabel(
void *container,
char *label,
int alignment);
UI_IMPORT UIWIDGET __stdcall UIspace(
void *container);
UI_IMPORT UIWIDGET __stdcall UIseparator(
void *container);
#ifdef __cplusplus
}
#endif
#endif