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

#ifdef __cplusplus
extern "C" {
#endif

void QClipboard_setText(void *self, void *text, int mode);
void* QClipboard_text(void *self, int mode);

#ifdef __cplusplus
}
#endif

#endif //RUST_FUI_QCLIPBOARD_HH