mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
49 lines
1.9 KiB
C++
49 lines
1.9 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_MULTIMEDIA_GEN_QMEDIACONTAINERCONTROL_H
|
|
#define MIQT_QT_MULTIMEDIA_GEN_QMEDIACONTAINERCONTROL_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 QMediaContainerControl;
|
|
class QMediaControl;
|
|
class QMetaObject;
|
|
class QObject;
|
|
#else
|
|
typedef struct QMediaContainerControl QMediaContainerControl;
|
|
typedef struct QMediaControl QMediaControl;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
#endif
|
|
|
|
void QMediaContainerControl_virtbase(QMediaContainerControl* src, QMediaControl** outptr_QMediaControl);
|
|
QMetaObject* QMediaContainerControl_MetaObject(const QMediaContainerControl* self);
|
|
void* QMediaContainerControl_Metacast(QMediaContainerControl* self, const char* param1);
|
|
struct miqt_string QMediaContainerControl_Tr(const char* s);
|
|
struct miqt_string QMediaContainerControl_TrUtf8(const char* s);
|
|
struct miqt_array /* of struct miqt_string */ QMediaContainerControl_SupportedContainers(const QMediaContainerControl* self);
|
|
struct miqt_string QMediaContainerControl_ContainerFormat(const QMediaContainerControl* self);
|
|
void QMediaContainerControl_SetContainerFormat(QMediaContainerControl* self, struct miqt_string format);
|
|
struct miqt_string QMediaContainerControl_ContainerDescription(const QMediaContainerControl* self, struct miqt_string formatMimeType);
|
|
struct miqt_string QMediaContainerControl_Tr2(const char* s, const char* c);
|
|
struct miqt_string QMediaContainerControl_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QMediaContainerControl_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QMediaContainerControl_TrUtf83(const char* s, const char* c, int n);
|
|
void QMediaContainerControl_Delete(QMediaContainerControl* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|