5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-06 01:40:03 +08:00
wails/v3/internal/assetserver/webview/webkit2_36.go
2023-08-14 08:31:55 +10:00

22 lines
312 B
Go

//go:build linux && webkit2_36
package webview
/*
#cgo linux pkg-config: webkit2gtk-4.0
#include "webkit2/webkit2.h"
*/
import "C"
import (
"io"
"net/http"
)
const Webkit2MinMinorVersion = 36
func webkit_uri_scheme_request_get_http_body(_ *C.WebKitURISchemeRequest) io.ReadCloser {
return http.NoBody
}