fui_system 0.14.1

System controls (dialogs, tray etc.) for FUI UI Framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef RUST_FUI_QSTRING_H
#define RUST_FUI_QSTRING_H

#ifdef __cplusplus
extern "C" {
#endif

void *QString_null();
void *QString_fromUtf8(const char *str, int size);
void QString_delete(void *self);

void *QString_toUtf8(void *self);

#ifdef __cplusplus
}
#endif

#endif //RUST_FUI_QSTRING_H