windowing_qt 0.17.5

Implementation of windowing_api using QT Framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef RUST_FUI_QICON_H
#define RUST_FUI_QICON_H

#ifdef __cplusplus
extern "C" {
#endif

void *QIcon_new();
void QIcon_delete(void *self);

void QIcon_addPixmap(void *self, const void *pixmap, int mode, int state);

#ifdef __cplusplus
}
#endif

#endif //RUST_FUI_QICON_H