cutego/quickcontrols2/quickcontrols2.h
therecipe 9cb2c840ec initial update to Qt 5.8 + breaking changes + new speech module
1. the qt api changed in various places
2. dropped the "_minimal" suffix for the deployment folders
3. to keep using older versions of Qt (5.7.1 for example), one would
now need to explicit export "QT_VERSION=5.7.1" and also
"QT_DIR=/path/to/Qt5.7.1"
2017-02-10 18:18:44 +01:00

25 lines
578 B
C
Executable file

// +build !minimal
#pragma once
#ifndef GO_QTQUICKCONTROLS2_H
#define GO_QTQUICKCONTROLS2_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
struct QtQuickControls2_PackedString { char* data; long long len; };
struct QtQuickControls2_PackedList { void* data; long long len; };
struct QtQuickControls2_PackedString QQuickStyle_QQuickStyle_Name();
struct QtQuickControls2_PackedString QQuickStyle_QQuickStyle_Path();
void QQuickStyle_QQuickStyle_SetFallbackStyle(char* style);
void QQuickStyle_QQuickStyle_SetStyle(char* style);
#ifdef __cplusplus
}
#endif
#endif