1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef RUST_FUI_QSLOT_H #define RUST_FUI_QSLOT_H #ifdef __cplusplus extern "C" { #endif void *QSlot_new(); void QSlot_delete(void *self); void QSlot_setFunc(void *self, void (*func)(void*), void *data); #ifdef __cplusplus } #endif #endif //RUST_FUI_QSLOT_H