├── .gitignore ├── LICENSE ├── README.md ├── doc ├── WebView2 소개 및 설치하기.md ├── microsoft.web.webview2.1.0.1072.54.nupkg.zip └── microsoft.web.webview2.1.0.1462.37.nupkg.zip ├── example ├── example.sln ├── example.vcxproj ├── example.vcxproj.filters ├── example_mfc │ ├── CMFCWebView2.cpp │ ├── CMFCWebView2.h │ ├── example_mfc.cpp │ ├── example_mfc.h │ ├── example_mfc.vcxproj │ ├── example_mfc.vcxproj.filters │ ├── example_mfcDlg.cpp │ ├── example_mfcDlg.h │ ├── examplemfc.rc │ ├── framework.h │ ├── pch.cpp │ ├── pch.h │ ├── res │ │ ├── example_mfc.ico │ │ └── examplemfc.rc2 │ ├── resource.h │ ├── targetver.h │ └── webmessage_exam.html └── example_win32 │ ├── Resource.h │ ├── example_win32.c │ ├── example_win32.ico │ ├── example_win32.rc │ ├── example_win32.vcxproj │ ├── example_win32.vcxproj.filters │ ├── framework.h │ ├── small.ico │ └── targetver.h ├── filecleaner.bat ├── include ├── wv2.h ├── wv2envOpts.h └── wv2util.h ├── profile.cpp ├── profile.h ├── resource.h ├── src ├── cJSON │ ├── cJSON.c │ └── cJSON.h ├── cookie │ ├── cookie.cpp │ ├── cookie.h │ ├── cookieList.cpp │ ├── cookieList.h │ ├── cookieManager.cpp │ └── cookieManager.h ├── cwv2.cpp ├── cwv2.h ├── cwv2deferral.h ├── cwv2env.cpp ├── cwv2env.h ├── cwv2envOpts.cpp ├── cwv2envOpts.h ├── cwv2newWindowRequestedEventArgs.cpp ├── cwv2newWindowRequestedEventArgs.h ├── cwv2settings.cpp ├── cwv2settings.h ├── cwv2types.h ├── cwv2webResourceResponse.cpp ├── cwv2webResourceResponse.h ├── eventHandler │ └── eventHandler.h ├── webview2 │ ├── arm64 │ │ ├── WebView2Loader.dll │ │ ├── WebView2Loader.dll.lib │ │ └── WebView2LoaderStatic.lib │ ├── include-winrt │ │ ├── WebView2Interop.h │ │ ├── WebView2Interop.idl │ │ └── WebView2Interop.tlb │ ├── include │ │ ├── WebView2.h │ │ ├── WebView2EnvironmentOptions.h │ │ ├── WebView2Experimental.h │ │ └── WebView2ExperimentalEnvironmentOptions.h │ ├── x64 │ │ ├── WebView2Loader.dll │ │ ├── WebView2Loader.dll.lib │ │ └── WebView2LoaderStatic.lib │ └── x86 │ │ ├── WebView2Loader.dll │ │ ├── WebView2Loader.dll.lib │ │ └── WebView2LoaderStatic.lib ├── wv2.cpp ├── wv2envOpts.cpp └── wv2util.cpp ├── wv2.rc ├── wv2.sln ├── wv2.vcxproj └── wv2.vcxproj.filters /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/README.md -------------------------------------------------------------------------------- /doc/WebView2 소개 및 설치하기.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/doc/WebView2 소개 및 설치하기.md -------------------------------------------------------------------------------- /doc/microsoft.web.webview2.1.0.1072.54.nupkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/doc/microsoft.web.webview2.1.0.1072.54.nupkg.zip -------------------------------------------------------------------------------- /doc/microsoft.web.webview2.1.0.1462.37.nupkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/doc/microsoft.web.webview2.1.0.1462.37.nupkg.zip -------------------------------------------------------------------------------- /example/example.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example.sln -------------------------------------------------------------------------------- /example/example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example.vcxproj -------------------------------------------------------------------------------- /example/example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example.vcxproj.filters -------------------------------------------------------------------------------- /example/example_mfc/CMFCWebView2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/CMFCWebView2.cpp -------------------------------------------------------------------------------- /example/example_mfc/CMFCWebView2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/CMFCWebView2.h -------------------------------------------------------------------------------- /example/example_mfc/example_mfc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/example_mfc.cpp -------------------------------------------------------------------------------- /example/example_mfc/example_mfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/example_mfc.h -------------------------------------------------------------------------------- /example/example_mfc/example_mfc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/example_mfc.vcxproj -------------------------------------------------------------------------------- /example/example_mfc/example_mfc.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/example_mfc.vcxproj.filters -------------------------------------------------------------------------------- /example/example_mfc/example_mfcDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/example_mfcDlg.cpp -------------------------------------------------------------------------------- /example/example_mfc/example_mfcDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/example_mfcDlg.h -------------------------------------------------------------------------------- /example/example_mfc/examplemfc.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/examplemfc.rc -------------------------------------------------------------------------------- /example/example_mfc/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/framework.h -------------------------------------------------------------------------------- /example/example_mfc/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/pch.cpp -------------------------------------------------------------------------------- /example/example_mfc/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/pch.h -------------------------------------------------------------------------------- /example/example_mfc/res/example_mfc.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/res/example_mfc.ico -------------------------------------------------------------------------------- /example/example_mfc/res/examplemfc.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/res/examplemfc.rc2 -------------------------------------------------------------------------------- /example/example_mfc/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/resource.h -------------------------------------------------------------------------------- /example/example_mfc/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/targetver.h -------------------------------------------------------------------------------- /example/example_mfc/webmessage_exam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_mfc/webmessage_exam.html -------------------------------------------------------------------------------- /example/example_win32/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/Resource.h -------------------------------------------------------------------------------- /example/example_win32/example_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/example_win32.c -------------------------------------------------------------------------------- /example/example_win32/example_win32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/example_win32.ico -------------------------------------------------------------------------------- /example/example_win32/example_win32.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/example_win32.rc -------------------------------------------------------------------------------- /example/example_win32/example_win32.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/example_win32.vcxproj -------------------------------------------------------------------------------- /example/example_win32/example_win32.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/example_win32.vcxproj.filters -------------------------------------------------------------------------------- /example/example_win32/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/framework.h -------------------------------------------------------------------------------- /example/example_win32/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/small.ico -------------------------------------------------------------------------------- /example/example_win32/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/example/example_win32/targetver.h -------------------------------------------------------------------------------- /filecleaner.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/filecleaner.bat -------------------------------------------------------------------------------- /include/wv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/include/wv2.h -------------------------------------------------------------------------------- /include/wv2envOpts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/include/wv2envOpts.h -------------------------------------------------------------------------------- /include/wv2util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/include/wv2util.h -------------------------------------------------------------------------------- /profile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/profile.cpp -------------------------------------------------------------------------------- /profile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/profile.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/resource.h -------------------------------------------------------------------------------- /src/cJSON/cJSON.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cJSON/cJSON.c -------------------------------------------------------------------------------- /src/cJSON/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cJSON/cJSON.h -------------------------------------------------------------------------------- /src/cookie/cookie.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cookie/cookie.cpp -------------------------------------------------------------------------------- /src/cookie/cookie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cookie/cookie.h -------------------------------------------------------------------------------- /src/cookie/cookieList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cookie/cookieList.cpp -------------------------------------------------------------------------------- /src/cookie/cookieList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cookie/cookieList.h -------------------------------------------------------------------------------- /src/cookie/cookieManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cookie/cookieManager.cpp -------------------------------------------------------------------------------- /src/cookie/cookieManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cookie/cookieManager.h -------------------------------------------------------------------------------- /src/cwv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2.cpp -------------------------------------------------------------------------------- /src/cwv2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2.h -------------------------------------------------------------------------------- /src/cwv2deferral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2deferral.h -------------------------------------------------------------------------------- /src/cwv2env.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2env.cpp -------------------------------------------------------------------------------- /src/cwv2env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2env.h -------------------------------------------------------------------------------- /src/cwv2envOpts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2envOpts.cpp -------------------------------------------------------------------------------- /src/cwv2envOpts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2envOpts.h -------------------------------------------------------------------------------- /src/cwv2newWindowRequestedEventArgs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2newWindowRequestedEventArgs.cpp -------------------------------------------------------------------------------- /src/cwv2newWindowRequestedEventArgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2newWindowRequestedEventArgs.h -------------------------------------------------------------------------------- /src/cwv2settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2settings.cpp -------------------------------------------------------------------------------- /src/cwv2settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2settings.h -------------------------------------------------------------------------------- /src/cwv2types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2types.h -------------------------------------------------------------------------------- /src/cwv2webResourceResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2webResourceResponse.cpp -------------------------------------------------------------------------------- /src/cwv2webResourceResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/cwv2webResourceResponse.h -------------------------------------------------------------------------------- /src/eventHandler/eventHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/eventHandler/eventHandler.h -------------------------------------------------------------------------------- /src/webview2/arm64/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/arm64/WebView2Loader.dll -------------------------------------------------------------------------------- /src/webview2/arm64/WebView2Loader.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/arm64/WebView2Loader.dll.lib -------------------------------------------------------------------------------- /src/webview2/arm64/WebView2LoaderStatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/arm64/WebView2LoaderStatic.lib -------------------------------------------------------------------------------- /src/webview2/include-winrt/WebView2Interop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/include-winrt/WebView2Interop.h -------------------------------------------------------------------------------- /src/webview2/include-winrt/WebView2Interop.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/include-winrt/WebView2Interop.idl -------------------------------------------------------------------------------- /src/webview2/include-winrt/WebView2Interop.tlb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/include-winrt/WebView2Interop.tlb -------------------------------------------------------------------------------- /src/webview2/include/WebView2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/include/WebView2.h -------------------------------------------------------------------------------- /src/webview2/include/WebView2EnvironmentOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/include/WebView2EnvironmentOptions.h -------------------------------------------------------------------------------- /src/webview2/include/WebView2Experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/include/WebView2Experimental.h -------------------------------------------------------------------------------- /src/webview2/include/WebView2ExperimentalEnvironmentOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/include/WebView2ExperimentalEnvironmentOptions.h -------------------------------------------------------------------------------- /src/webview2/x64/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/x64/WebView2Loader.dll -------------------------------------------------------------------------------- /src/webview2/x64/WebView2Loader.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/x64/WebView2Loader.dll.lib -------------------------------------------------------------------------------- /src/webview2/x64/WebView2LoaderStatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/x64/WebView2LoaderStatic.lib -------------------------------------------------------------------------------- /src/webview2/x86/WebView2Loader.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/x86/WebView2Loader.dll -------------------------------------------------------------------------------- /src/webview2/x86/WebView2Loader.dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/x86/WebView2Loader.dll.lib -------------------------------------------------------------------------------- /src/webview2/x86/WebView2LoaderStatic.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/webview2/x86/WebView2LoaderStatic.lib -------------------------------------------------------------------------------- /src/wv2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/wv2.cpp -------------------------------------------------------------------------------- /src/wv2envOpts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/wv2envOpts.cpp -------------------------------------------------------------------------------- /src/wv2util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/src/wv2util.cpp -------------------------------------------------------------------------------- /wv2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/wv2.rc -------------------------------------------------------------------------------- /wv2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/wv2.sln -------------------------------------------------------------------------------- /wv2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/wv2.vcxproj -------------------------------------------------------------------------------- /wv2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smok95/wv2/HEAD/wv2.vcxproj.filters --------------------------------------------------------------------------------