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
#ifndef RUST_FUI_QPIXMAP_H
#define RUST_FUI_QPIXMAP_H

#ifdef __cplusplus
extern "C" {
#endif

void *QPixmap_new();
void QPixmap_delete(void *self);

int QPixmap_loadFromData(void *self, const unsigned char *data, int len);

#ifdef __cplusplus
}
#endif

#endif //RUST_FUI_QPIXMAP_H