1
2
3
4
5
6
7
8 #ifndef LABEL_H
9 #define LABEL_H
10
11 #include "toolkit.h"
12
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16
17 UI_IMPORT UIWIDGET __stdcall UIlabel(
void *container,
char *label,
int alignment);
18
19 UI_IMPORT UIWIDGET __stdcall UIspace(
void *container);
20
21 UI_IMPORT UIWIDGET __stdcall UIseparator(
void *container);
22
23 #ifdef __cplusplus
24 }
25 #endif
26
27 #endif
28
29