mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
31 lines
484 B
C
31 lines
484 B
C
#ifndef BINDING_H
|
|
#define BINDING_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void* PQApplication;
|
|
|
|
typedef void* PQPushButton;
|
|
|
|
typedef void* PQWidget;
|
|
|
|
PQApplication QApplication_new(int* argc, char** argv);
|
|
|
|
PQWidget QWidget_new();
|
|
|
|
void QWidget_show(PQWidget self);
|
|
|
|
PQPushButton QPushButton_new(const char* label, PQWidget parent);
|
|
|
|
void QPushButton_show(PQPushButton self);
|
|
|
|
int QApplication_exec(PQApplication self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|