├── .clang-format ├── .gitignore ├── GNUmakefile ├── Include ├── LICENSE.txt ├── WebView2.h └── WebView2EnvironmentOptions.h ├── LICENSE.md ├── OpenWebView2Loader.def ├── OpenWebView2Loader.sln ├── OpenWebView2Loader.vcxproj ├── OpenWebView2Loader.vcxproj.filters ├── Out └── .gitignore ├── README.md └── Source ├── WebView2Loader.cpp └── WebView2Loader.h /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Google -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | *.user 3 | -------------------------------------------------------------------------------- /GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/GNUmakefile -------------------------------------------------------------------------------- /Include/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/Include/LICENSE.txt -------------------------------------------------------------------------------- /Include/WebView2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/Include/WebView2.h -------------------------------------------------------------------------------- /Include/WebView2EnvironmentOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/Include/WebView2EnvironmentOptions.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/LICENSE.md -------------------------------------------------------------------------------- /OpenWebView2Loader.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/OpenWebView2Loader.def -------------------------------------------------------------------------------- /OpenWebView2Loader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/OpenWebView2Loader.sln -------------------------------------------------------------------------------- /OpenWebView2Loader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/OpenWebView2Loader.vcxproj -------------------------------------------------------------------------------- /OpenWebView2Loader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/OpenWebView2Loader.vcxproj.filters -------------------------------------------------------------------------------- /Out/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/README.md -------------------------------------------------------------------------------- /Source/WebView2Loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/Source/WebView2Loader.cpp -------------------------------------------------------------------------------- /Source/WebView2Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jchv/OpenWebView2Loader/HEAD/Source/WebView2Loader.h --------------------------------------------------------------------------------