mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 00:48:38 +00:00
50 lines
2.0 KiB
C++
50 lines
2.0 KiB
C++
#pragma once
|
|
#ifndef MIQT_QT_MULTIMEDIA_GEN_QCAMERAFEEDBACKCONTROL_H
|
|
#define MIQT_QT_MULTIMEDIA_GEN_QCAMERAFEEDBACKCONTROL_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 QCameraFeedbackControl;
|
|
class QMediaControl;
|
|
class QMetaObject;
|
|
class QObject;
|
|
#else
|
|
typedef struct QCameraFeedbackControl QCameraFeedbackControl;
|
|
typedef struct QMediaControl QMediaControl;
|
|
typedef struct QMetaObject QMetaObject;
|
|
typedef struct QObject QObject;
|
|
#endif
|
|
|
|
void QCameraFeedbackControl_virtbase(QCameraFeedbackControl* src, QMediaControl** outptr_QMediaControl);
|
|
QMetaObject* QCameraFeedbackControl_MetaObject(const QCameraFeedbackControl* self);
|
|
void* QCameraFeedbackControl_Metacast(QCameraFeedbackControl* self, const char* param1);
|
|
struct miqt_string QCameraFeedbackControl_Tr(const char* s);
|
|
struct miqt_string QCameraFeedbackControl_TrUtf8(const char* s);
|
|
bool QCameraFeedbackControl_IsEventFeedbackLocked(const QCameraFeedbackControl* self, int param1);
|
|
bool QCameraFeedbackControl_IsEventFeedbackEnabled(const QCameraFeedbackControl* self, int param1);
|
|
bool QCameraFeedbackControl_SetEventFeedbackEnabled(QCameraFeedbackControl* self, int param1, bool param2);
|
|
void QCameraFeedbackControl_ResetEventFeedback(QCameraFeedbackControl* self, int param1);
|
|
bool QCameraFeedbackControl_SetEventFeedbackSound(QCameraFeedbackControl* self, int param1, struct miqt_string filePath);
|
|
struct miqt_string QCameraFeedbackControl_Tr2(const char* s, const char* c);
|
|
struct miqt_string QCameraFeedbackControl_Tr3(const char* s, const char* c, int n);
|
|
struct miqt_string QCameraFeedbackControl_TrUtf82(const char* s, const char* c);
|
|
struct miqt_string QCameraFeedbackControl_TrUtf83(const char* s, const char* c, int n);
|
|
void QCameraFeedbackControl_Delete(QCameraFeedbackControl* self, bool isSubclass);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|