#ifndef UI_QT_QT_INTERFACE_H_
#define UI_QT_QT_INTERFACE_H_
#if defined(__has_attribute) && __has_attribute(no_sanitize)
#define DISABLE_CFI_VCALL …
#else
#define DISABLE_CFI_VCALL
#endif
#include <stdint.h>
#include <stdlib.h>
SkColor;
namespace qt {
class String { … };
class Buffer { … };
enum class FontHinting { … };
enum class ColorType { … };
enum class ColorState { … };
struct FontRenderParams { … };
struct FontDescription { … };
struct Image { … };
struct MonitorScale { … };
class QtInterface { … };
}
extern "C" __attribute__((visibility("default"))) qt::QtInterface*
CreateQtInterface(qt::QtInterface::Delegate* delegate, int* argc, char** argv);
#endif