├── .gitignore ├── LICENSE ├── README.md ├── RestWebApp ├── RestWebApp.sln └── RestWebApp │ ├── App_Start │ └── WebApiConfig.cs │ ├── Controllers │ └── ProductsController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Models │ └── Product.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RestWebApp.csproj │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ └── packages.config └── WinHttpGet ├── WinHttpGet.sln └── WinHttpGet ├── WinHttpGet.vcxproj ├── WinHttpGet.vcxproj.filters ├── WinHttpWrapper.cpp ├── WinHttpWrapper.h ├── WinVersion.cpp ├── WinVersion.h └── usage.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/README.md -------------------------------------------------------------------------------- /RestWebApp/RestWebApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp.sln -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/App_Start/WebApiConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/App_Start/WebApiConfig.cs -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/Global.asax -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/Global.asax.cs -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/Models/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/Models/Product.cs -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/RestWebApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/RestWebApp.csproj -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/Web.Debug.config -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/Web.Release.config -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/Web.config -------------------------------------------------------------------------------- /RestWebApp/RestWebApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/RestWebApp/RestWebApp/packages.config -------------------------------------------------------------------------------- /WinHttpGet/WinHttpGet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/WinHttpGet/WinHttpGet.sln -------------------------------------------------------------------------------- /WinHttpGet/WinHttpGet/WinHttpGet.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/WinHttpGet/WinHttpGet/WinHttpGet.vcxproj -------------------------------------------------------------------------------- /WinHttpGet/WinHttpGet/WinHttpGet.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/WinHttpGet/WinHttpGet/WinHttpGet.vcxproj.filters -------------------------------------------------------------------------------- /WinHttpGet/WinHttpGet/WinHttpWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/WinHttpGet/WinHttpGet/WinHttpWrapper.cpp -------------------------------------------------------------------------------- /WinHttpGet/WinHttpGet/WinHttpWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/WinHttpGet/WinHttpGet/WinHttpWrapper.h -------------------------------------------------------------------------------- /WinHttpGet/WinHttpGet/WinVersion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/WinHttpGet/WinHttpGet/WinVersion.cpp -------------------------------------------------------------------------------- /WinHttpGet/WinHttpGet/WinVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/WinHttpGet/WinHttpGet/WinVersion.h -------------------------------------------------------------------------------- /WinHttpGet/WinHttpGet/usage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaovoon/winhttp_examples/HEAD/WinHttpGet/WinHttpGet/usage.cpp --------------------------------------------------------------------------------