cutego/webview/webview.h
therecipe aa8a227277 even more changes related to the js binding + fixes for Qt 5.14
* support for static darwin docker deployments
2019-12-21 17:42:05 +01:00

22 lines
350 B
C

// +build !minimal
#pragma once
#ifndef GO_QTWEBVIEW_H
#define GO_QTWEBVIEW_H
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
struct QtWebView_PackedString { char* data; long long len; void* ptr; };
struct QtWebView_PackedList { void* data; long long len; };
void QtWebView_QtWebView_Initialize();
#ifdef __cplusplus
}
#endif
#endif