mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
50 lines
1.8 KiB
C++
50 lines
1.8 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_MULTIMEDIA_GEN_QAUDIOROLECONTROL_H
|
|
#define MIQT_QT_MULTIMEDIA_GEN_QAUDIOROLECONTROL_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 QAudioRoleControl;
|
|
class QMediaControl;
|
|
class QMetaObject;
|
|
class QObject;
|
|
#else
|
|
typedef struct QAudioRoleControl QAudioRoleControl;
|
|
typedef struct QMediaControl QMediaControl;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
#endif
|
|
|
|
void QAudioRoleControl_virtbase(QAudioRoleControl* src, QMediaControl** outptr_QMediaControl);
|
|
QMetaObject* QAudioRoleControl_MetaObject(const QAudioRoleControl* self);
|
|
void* QAudioRoleControl_Metacast(QAudioRoleControl* self, const char* param1);
|
|
struct miqt_string QAudioRoleControl_Tr(const char* s);
|
|
struct miqt_string QAudioRoleControl_TrUtf8(const char* s);
|
|
int QAudioRoleControl_AudioRole(const QAudioRoleControl* self);
|
|
void QAudioRoleControl_SetAudioRole(QAudioRoleControl* self, int role);
|
|
struct miqt_array /* of int */ QAudioRoleControl_SupportedAudioRoles(const QAudioRoleControl* self);
|
|
void QAudioRoleControl_AudioRoleChanged(QAudioRoleControl* self, int role);
|
|
void QAudioRoleControl_connect_AudioRoleChanged(QAudioRoleControl* self, intptr_t slot);
|
|
struct miqt_string QAudioRoleControl_Tr2(const char* s, const char* c);
|
|
struct miqt_string QAudioRoleControl_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QAudioRoleControl_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QAudioRoleControl_TrUtf83(const char* s, const char* c, int n);
|
|
void QAudioRoleControl_Delete(QAudioRoleControl* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|