mirror of
https://github.com/mappu/miqt.git
synced 2024-12-22 17:08:38 +00:00
31 lines
729 B
C++
31 lines
729 B
C++
#ifndef GEN_QGENERICPLUGINFACTORY_H
|
|
#define GEN_QGENERICPLUGINFACTORY_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
class QGenericPluginFactory;
|
|
class QObject;
|
|
#else
|
|
typedef struct QGenericPluginFactory QGenericPluginFactory;
|
|
typedef struct QObject QObject;
|
|
#endif
|
|
|
|
void QGenericPluginFactory_Keys(char*** _out, int** _out_Lengths, size_t* _out_len);
|
|
QObject* QGenericPluginFactory_Create(const char* param1, size_t param1_Strlen, const char* param2, size_t param2_Strlen);
|
|
void QGenericPluginFactory_Delete(QGenericPluginFactory* self);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern C */
|
|
#endif
|
|
|
|
#endif
|