mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
#ifndef GEN_QMEDIACONTROL_H
|
|
#define GEN_QMEDIACONTROL_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#include "../../libmiqt/libmiqt.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QMediaControl;
|
|
class QMetaObject;
|
|
#else
|
|
typedef struct QMediaControl QMediaControl;
|
|
typedef struct QMetaObject QMetaObject;
|
|
#endif
|
|
|
|
QMetaObject* QMediaControl_MetaObject(const QMediaControl* self);
|
|
void* QMediaControl_Metacast(QMediaControl* self, const char* param1);
|
|
struct miqt_string QMediaControl_Tr(const char* s);
|
|
struct miqt_string QMediaControl_TrUtf8(const char* s);
|
|
struct miqt_string QMediaControl_Tr2(const char* s, const char* c);
|
|
struct miqt_string QMediaControl_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QMediaControl_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QMediaControl_TrUtf83(const char* s, const char* c, int n);
|
|
void QMediaControl_Delete(QMediaControl* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|