├── .gitattributes ├── .gitignore ├── ConsoleApplication1 ├── ConsoleApplication1.cpp ├── ConsoleApplication1.vcxproj ├── ConsoleApplication1.vcxproj.filters ├── pch.cpp └── pch.h ├── Contributing.md ├── LICENSE ├── MFCClient.sln ├── MFCClient ├── MFCClient.cpp ├── MFCClient.h ├── MFCClient.rc ├── MFCClient.vcxproj ├── MFCClient.vcxproj.filters ├── MFCClientDlg.cpp ├── MFCClientDlg.h ├── Resource.h ├── WindowsVersionHelper.h ├── app.manifest ├── res │ ├── MFCClient.ico │ └── MFCClient.rc2 ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── Packaging ├── Images │ ├── LockScreenLogo.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── Package.appxmanifest └── Packaging.wapproj ├── README.md ├── SECURITY.md ├── Win32TestApp ├── Win32TestApp.cpp ├── Win32TestApp.vcxproj ├── Win32TestApp.vcxproj.filters ├── WindowsVersionHelper.h ├── app.manifest ├── pch.cpp └── pch.h ├── WindowsStore ├── WindowsStore.cpp ├── WindowsStore.h ├── WindowsStore.vcxproj ├── WindowsStore.vcxproj.filters ├── WindowsStoreImpl.cpp ├── WindowsStoreImpl.h ├── stdafx.cpp ├── stdafx.h └── targetver.h └── WindowsStoreDLL ├── WindowsStore.cpp ├── WindowsStore.h ├── WindowsStoreDLL.vcxproj ├── WindowsStoreDLL.vcxproj.filters ├── WindowsStoreImpl.cpp ├── WindowsStoreImpl.h ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/.gitignore -------------------------------------------------------------------------------- /ConsoleApplication1/ConsoleApplication1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/ConsoleApplication1/ConsoleApplication1.cpp -------------------------------------------------------------------------------- /ConsoleApplication1/ConsoleApplication1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/ConsoleApplication1/ConsoleApplication1.vcxproj -------------------------------------------------------------------------------- /ConsoleApplication1/ConsoleApplication1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/ConsoleApplication1/ConsoleApplication1.vcxproj.filters -------------------------------------------------------------------------------- /ConsoleApplication1/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/ConsoleApplication1/pch.cpp -------------------------------------------------------------------------------- /ConsoleApplication1/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/ConsoleApplication1/pch.h -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/LICENSE -------------------------------------------------------------------------------- /MFCClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient.sln -------------------------------------------------------------------------------- /MFCClient/MFCClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/MFCClient.cpp -------------------------------------------------------------------------------- /MFCClient/MFCClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/MFCClient.h -------------------------------------------------------------------------------- /MFCClient/MFCClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/MFCClient.rc -------------------------------------------------------------------------------- /MFCClient/MFCClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/MFCClient.vcxproj -------------------------------------------------------------------------------- /MFCClient/MFCClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/MFCClient.vcxproj.filters -------------------------------------------------------------------------------- /MFCClient/MFCClientDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/MFCClientDlg.cpp -------------------------------------------------------------------------------- /MFCClient/MFCClientDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/MFCClientDlg.h -------------------------------------------------------------------------------- /MFCClient/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/Resource.h -------------------------------------------------------------------------------- /MFCClient/WindowsVersionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/WindowsVersionHelper.h -------------------------------------------------------------------------------- /MFCClient/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/app.manifest -------------------------------------------------------------------------------- /MFCClient/res/MFCClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/res/MFCClient.ico -------------------------------------------------------------------------------- /MFCClient/res/MFCClient.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/res/MFCClient.rc2 -------------------------------------------------------------------------------- /MFCClient/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/stdafx.cpp -------------------------------------------------------------------------------- /MFCClient/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/stdafx.h -------------------------------------------------------------------------------- /MFCClient/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/MFCClient/targetver.h -------------------------------------------------------------------------------- /Packaging/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Packaging/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /Packaging/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Packaging/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /Packaging/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Packaging/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /Packaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Packaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /Packaging/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Packaging/Images/StoreLogo.png -------------------------------------------------------------------------------- /Packaging/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Packaging/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /Packaging/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Packaging/Package.appxmanifest -------------------------------------------------------------------------------- /Packaging/Packaging.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Packaging/Packaging.wapproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Win32TestApp/Win32TestApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Win32TestApp/Win32TestApp.cpp -------------------------------------------------------------------------------- /Win32TestApp/Win32TestApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Win32TestApp/Win32TestApp.vcxproj -------------------------------------------------------------------------------- /Win32TestApp/Win32TestApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Win32TestApp/Win32TestApp.vcxproj.filters -------------------------------------------------------------------------------- /Win32TestApp/WindowsVersionHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Win32TestApp/WindowsVersionHelper.h -------------------------------------------------------------------------------- /Win32TestApp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Win32TestApp/app.manifest -------------------------------------------------------------------------------- /Win32TestApp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Win32TestApp/pch.cpp -------------------------------------------------------------------------------- /Win32TestApp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/Win32TestApp/pch.h -------------------------------------------------------------------------------- /WindowsStore/WindowsStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStore/WindowsStore.cpp -------------------------------------------------------------------------------- /WindowsStore/WindowsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStore/WindowsStore.h -------------------------------------------------------------------------------- /WindowsStore/WindowsStore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStore/WindowsStore.vcxproj -------------------------------------------------------------------------------- /WindowsStore/WindowsStore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStore/WindowsStore.vcxproj.filters -------------------------------------------------------------------------------- /WindowsStore/WindowsStoreImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStore/WindowsStoreImpl.cpp -------------------------------------------------------------------------------- /WindowsStore/WindowsStoreImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStore/WindowsStoreImpl.h -------------------------------------------------------------------------------- /WindowsStore/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /WindowsStore/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStore/stdafx.h -------------------------------------------------------------------------------- /WindowsStore/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStore/targetver.h -------------------------------------------------------------------------------- /WindowsStoreDLL/WindowsStore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStoreDLL/WindowsStore.cpp -------------------------------------------------------------------------------- /WindowsStoreDLL/WindowsStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStoreDLL/WindowsStore.h -------------------------------------------------------------------------------- /WindowsStoreDLL/WindowsStoreDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStoreDLL/WindowsStoreDLL.vcxproj -------------------------------------------------------------------------------- /WindowsStoreDLL/WindowsStoreDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStoreDLL/WindowsStoreDLL.vcxproj.filters -------------------------------------------------------------------------------- /WindowsStoreDLL/WindowsStoreImpl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStoreDLL/WindowsStoreImpl.cpp -------------------------------------------------------------------------------- /WindowsStoreDLL/WindowsStoreImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStoreDLL/WindowsStoreImpl.h -------------------------------------------------------------------------------- /WindowsStoreDLL/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | -------------------------------------------------------------------------------- /WindowsStoreDLL/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStoreDLL/stdafx.h -------------------------------------------------------------------------------- /WindowsStoreDLL/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MFCStoreClient/HEAD/WindowsStoreDLL/targetver.h --------------------------------------------------------------------------------