comparison: ui/wpf/label.h
ui/wpf/label.h
- changeset 108
- 77254bd6dccb
- parent 107
- b34bd1557c6c
- child 109
- c3dfcb8f0be7
equal
deleted
inserted
replaced
| 1 /* |
|
| 2 * File: label.h |
|
| 3 * Author: Olaf |
|
| 4 * |
|
| 5 * Created on 19. Januar 2016, 18:12 |
|
| 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 /* LABEL_H */ |
|
| 28 |
|