├── LICENSE ├── README.md ├── ms.webview2 ├── LICENSE ├── include │ ├── EventToken.h │ ├── WebView2.h │ └── WebView2EnvironmentOptions.h ├── x64 │ └── WebView2Loader.dll └── x86 │ └── WebView2Loader.dll ├── webview-cocoa.c ├── webview-example-2.c ├── webview-example.c ├── webview-gtk.c ├── webview-kiosk.c ├── webview-win32-edge.c ├── webview-win32.c └── webview.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/README.md -------------------------------------------------------------------------------- /ms.webview2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/ms.webview2/LICENSE -------------------------------------------------------------------------------- /ms.webview2/include/EventToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/ms.webview2/include/EventToken.h -------------------------------------------------------------------------------- /ms.webview2/include/WebView2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/ms.webview2/include/WebView2.h -------------------------------------------------------------------------------- /ms.webview2/include/WebView2EnvironmentOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/ms.webview2/include/WebView2EnvironmentOptions.h -------------------------------------------------------------------------------- /ms.webview2/x64/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/ms.webview2/x64/WebView2Loader.dll -------------------------------------------------------------------------------- /ms.webview2/x86/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/ms.webview2/x86/WebView2Loader.dll -------------------------------------------------------------------------------- /webview-cocoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/webview-cocoa.c -------------------------------------------------------------------------------- /webview-example-2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/webview-example-2.c -------------------------------------------------------------------------------- /webview-example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/webview-example.c -------------------------------------------------------------------------------- /webview-gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/webview-gtk.c -------------------------------------------------------------------------------- /webview-kiosk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/webview-kiosk.c -------------------------------------------------------------------------------- /webview-win32-edge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/webview-win32-edge.c -------------------------------------------------------------------------------- /webview-win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/webview-win32.c -------------------------------------------------------------------------------- /webview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/javalikescript/webview-c/HEAD/webview.h --------------------------------------------------------------------------------