├── .clang-format ├── .clang-tidy ├── .gitattributes ├── .gitignore ├── .vsconfig ├── CMakeLists.txt ├── CMakePresets.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── cmake └── common_build_flags.cmake ├── docs ├── CMakeLists.txt ├── Doxyfile ├── WilDocs.md └── nosal2.doxyfile ├── include └── wil │ ├── Tracelogging.h │ ├── com.h │ ├── com_apartment_variable.h │ ├── common.h │ ├── coroutine.h │ ├── cppwinrt.h │ ├── cppwinrt_authoring.h │ ├── cppwinrt_helpers.h │ ├── cppwinrt_notifiable_server_lock.h │ ├── cppwinrt_wrl.h │ ├── filesystem.h │ ├── network.h │ ├── nt_result_macros.h │ ├── registry.h │ ├── registry_helpers.h │ ├── resource.h │ ├── result.h │ ├── result_macros.h │ ├── result_originate.h │ ├── rpc_helpers.h │ ├── safecast.h │ ├── stl.h │ ├── token_helpers.h │ ├── traceloggingconfig.h │ ├── win32_helpers.h │ ├── win32_result_macros.h │ ├── windowing.h │ ├── winrt.h │ ├── wistd_config.h │ ├── wistd_functional.h │ ├── wistd_memory.h │ ├── wistd_type_traits.h │ └── wrl.h ├── natvis ├── wil.natstepfilter └── wil.natvis ├── packaging ├── CMakeLists.txt └── nuget │ ├── CMakeLists.txt │ ├── Microsoft.Windows.ImplementationLibrary.nuspec │ └── Microsoft.Windows.ImplementationLibrary.targets ├── scripts ├── azure-pipelines.yml ├── build_all.cmd ├── call-vcvars.cmd ├── enable-appverifier.cmd ├── find-clang-format.cmd ├── format-changes.cmd ├── init.cmd ├── init_all.cmd ├── run-clang-format.cmd ├── runtests.cmd └── stress-test.cmd ├── tests ├── CMakeLists.txt ├── ComApartmentVariableTests.cpp ├── ComTests.cpp ├── CommonTests.cpp ├── CoroutineTests.cpp ├── CppWinRT20Tests.cpp ├── CppWinRTAuthoringTests.cpp ├── CppWinRTNotifiableServerLockTests.cpp ├── CppWinRTTests.cpp ├── FakeWinRTTypes.h ├── FileSystemTests.cpp ├── MockingTests.cpp ├── NetworkTests.cpp ├── NtResultTests.cpp ├── RegistryTests.cpp ├── ResourceTests.cpp ├── ResultTests.cpp ├── Rpc.cpp ├── SafeCastTests.cpp ├── StlTests.cpp ├── TokenHelpersTests.cpp ├── TraceLoggingTests.cpp ├── TraceLoggingTests.h ├── TraceLoggingTests_PartB.cpp ├── UniqueWinRTEventTokenTests.cpp ├── WatcherTests.cpp ├── WinRTTests.cpp ├── WinVerifyTrustTest.cpp ├── WindowingTests.cpp ├── WistdTests.cpp ├── app.manifest ├── app │ └── CMakeLists.txt ├── common.h ├── cpplatest │ └── CMakeLists.txt ├── cppwinrt-notifiable-server-lock │ └── CMakeLists.txt ├── cppwinrt_threadpool_guard.h ├── main.cpp ├── mocking.h ├── noexcept │ └── CMakeLists.txt ├── normal │ └── CMakeLists.txt ├── pch.h ├── sanitize-address │ └── CMakeLists.txt ├── sanitize-undefined-behavior │ └── CMakeLists.txt ├── test_objects.h ├── wiTest.cpp └── win7 │ └── CMakeLists.txt ├── vcpkg-configuration.json ├── vcpkg-overlay ├── catch2 │ ├── except.patch │ ├── fix-install-path.patch │ ├── portfile.cmake │ ├── synch.patch │ └── vcpkg.json └── detours │ ├── portfile.cmake │ ├── usage │ └── vcpkg.json └── vcpkg.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/.clang-format -------------------------------------------------------------------------------- /.clang-tidy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/.clang-tidy -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Disable CRLF-mapping for all files in the depot. 2 | * -text 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/.gitignore -------------------------------------------------------------------------------- /.vsconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/.vsconfig -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /cmake/common_build_flags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/cmake/common_build_flags.cmake -------------------------------------------------------------------------------- /docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/docs/CMakeLists.txt -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/WilDocs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/docs/WilDocs.md -------------------------------------------------------------------------------- /docs/nosal2.doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/docs/nosal2.doxyfile -------------------------------------------------------------------------------- /include/wil/Tracelogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/Tracelogging.h -------------------------------------------------------------------------------- /include/wil/com.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/com.h -------------------------------------------------------------------------------- /include/wil/com_apartment_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/com_apartment_variable.h -------------------------------------------------------------------------------- /include/wil/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/common.h -------------------------------------------------------------------------------- /include/wil/coroutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/coroutine.h -------------------------------------------------------------------------------- /include/wil/cppwinrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/cppwinrt.h -------------------------------------------------------------------------------- /include/wil/cppwinrt_authoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/cppwinrt_authoring.h -------------------------------------------------------------------------------- /include/wil/cppwinrt_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/cppwinrt_helpers.h -------------------------------------------------------------------------------- /include/wil/cppwinrt_notifiable_server_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/cppwinrt_notifiable_server_lock.h -------------------------------------------------------------------------------- /include/wil/cppwinrt_wrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/cppwinrt_wrl.h -------------------------------------------------------------------------------- /include/wil/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/filesystem.h -------------------------------------------------------------------------------- /include/wil/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/network.h -------------------------------------------------------------------------------- /include/wil/nt_result_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/nt_result_macros.h -------------------------------------------------------------------------------- /include/wil/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/registry.h -------------------------------------------------------------------------------- /include/wil/registry_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/registry_helpers.h -------------------------------------------------------------------------------- /include/wil/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/resource.h -------------------------------------------------------------------------------- /include/wil/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/result.h -------------------------------------------------------------------------------- /include/wil/result_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/result_macros.h -------------------------------------------------------------------------------- /include/wil/result_originate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/result_originate.h -------------------------------------------------------------------------------- /include/wil/rpc_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/rpc_helpers.h -------------------------------------------------------------------------------- /include/wil/safecast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/safecast.h -------------------------------------------------------------------------------- /include/wil/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/stl.h -------------------------------------------------------------------------------- /include/wil/token_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/token_helpers.h -------------------------------------------------------------------------------- /include/wil/traceloggingconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/traceloggingconfig.h -------------------------------------------------------------------------------- /include/wil/win32_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/win32_helpers.h -------------------------------------------------------------------------------- /include/wil/win32_result_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/win32_result_macros.h -------------------------------------------------------------------------------- /include/wil/windowing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/windowing.h -------------------------------------------------------------------------------- /include/wil/winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/winrt.h -------------------------------------------------------------------------------- /include/wil/wistd_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/wistd_config.h -------------------------------------------------------------------------------- /include/wil/wistd_functional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/wistd_functional.h -------------------------------------------------------------------------------- /include/wil/wistd_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/wistd_memory.h -------------------------------------------------------------------------------- /include/wil/wistd_type_traits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/wistd_type_traits.h -------------------------------------------------------------------------------- /include/wil/wrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/include/wil/wrl.h -------------------------------------------------------------------------------- /natvis/wil.natstepfilter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/natvis/wil.natstepfilter -------------------------------------------------------------------------------- /natvis/wil.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/natvis/wil.natvis -------------------------------------------------------------------------------- /packaging/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | 2 | add_subdirectory(nuget) 3 | -------------------------------------------------------------------------------- /packaging/nuget/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/packaging/nuget/CMakeLists.txt -------------------------------------------------------------------------------- /packaging/nuget/Microsoft.Windows.ImplementationLibrary.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/packaging/nuget/Microsoft.Windows.ImplementationLibrary.nuspec -------------------------------------------------------------------------------- /packaging/nuget/Microsoft.Windows.ImplementationLibrary.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/packaging/nuget/Microsoft.Windows.ImplementationLibrary.targets -------------------------------------------------------------------------------- /scripts/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/azure-pipelines.yml -------------------------------------------------------------------------------- /scripts/build_all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/build_all.cmd -------------------------------------------------------------------------------- /scripts/call-vcvars.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/call-vcvars.cmd -------------------------------------------------------------------------------- /scripts/enable-appverifier.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/enable-appverifier.cmd -------------------------------------------------------------------------------- /scripts/find-clang-format.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/find-clang-format.cmd -------------------------------------------------------------------------------- /scripts/format-changes.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/format-changes.cmd -------------------------------------------------------------------------------- /scripts/init.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/init.cmd -------------------------------------------------------------------------------- /scripts/init_all.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/init_all.cmd -------------------------------------------------------------------------------- /scripts/run-clang-format.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/run-clang-format.cmd -------------------------------------------------------------------------------- /scripts/runtests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/runtests.cmd -------------------------------------------------------------------------------- /scripts/stress-test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/scripts/stress-test.cmd -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/ComApartmentVariableTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/ComApartmentVariableTests.cpp -------------------------------------------------------------------------------- /tests/ComTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/ComTests.cpp -------------------------------------------------------------------------------- /tests/CommonTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/CommonTests.cpp -------------------------------------------------------------------------------- /tests/CoroutineTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/CoroutineTests.cpp -------------------------------------------------------------------------------- /tests/CppWinRT20Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/CppWinRT20Tests.cpp -------------------------------------------------------------------------------- /tests/CppWinRTAuthoringTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/CppWinRTAuthoringTests.cpp -------------------------------------------------------------------------------- /tests/CppWinRTNotifiableServerLockTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/CppWinRTNotifiableServerLockTests.cpp -------------------------------------------------------------------------------- /tests/CppWinRTTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/CppWinRTTests.cpp -------------------------------------------------------------------------------- /tests/FakeWinRTTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/FakeWinRTTypes.h -------------------------------------------------------------------------------- /tests/FileSystemTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/FileSystemTests.cpp -------------------------------------------------------------------------------- /tests/MockingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/MockingTests.cpp -------------------------------------------------------------------------------- /tests/NetworkTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/NetworkTests.cpp -------------------------------------------------------------------------------- /tests/NtResultTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/NtResultTests.cpp -------------------------------------------------------------------------------- /tests/RegistryTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/RegistryTests.cpp -------------------------------------------------------------------------------- /tests/ResourceTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/ResourceTests.cpp -------------------------------------------------------------------------------- /tests/ResultTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/ResultTests.cpp -------------------------------------------------------------------------------- /tests/Rpc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/Rpc.cpp -------------------------------------------------------------------------------- /tests/SafeCastTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/SafeCastTests.cpp -------------------------------------------------------------------------------- /tests/StlTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/StlTests.cpp -------------------------------------------------------------------------------- /tests/TokenHelpersTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/TokenHelpersTests.cpp -------------------------------------------------------------------------------- /tests/TraceLoggingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/TraceLoggingTests.cpp -------------------------------------------------------------------------------- /tests/TraceLoggingTests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/TraceLoggingTests.h -------------------------------------------------------------------------------- /tests/TraceLoggingTests_PartB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/TraceLoggingTests_PartB.cpp -------------------------------------------------------------------------------- /tests/UniqueWinRTEventTokenTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/UniqueWinRTEventTokenTests.cpp -------------------------------------------------------------------------------- /tests/WatcherTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/WatcherTests.cpp -------------------------------------------------------------------------------- /tests/WinRTTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/WinRTTests.cpp -------------------------------------------------------------------------------- /tests/WinVerifyTrustTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/WinVerifyTrustTest.cpp -------------------------------------------------------------------------------- /tests/WindowingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/WindowingTests.cpp -------------------------------------------------------------------------------- /tests/WistdTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/WistdTests.cpp -------------------------------------------------------------------------------- /tests/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/app.manifest -------------------------------------------------------------------------------- /tests/app/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/app/CMakeLists.txt -------------------------------------------------------------------------------- /tests/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/common.h -------------------------------------------------------------------------------- /tests/cpplatest/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/cpplatest/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cppwinrt-notifiable-server-lock/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/cppwinrt-notifiable-server-lock/CMakeLists.txt -------------------------------------------------------------------------------- /tests/cppwinrt_threadpool_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/cppwinrt_threadpool_guard.h -------------------------------------------------------------------------------- /tests/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/main.cpp -------------------------------------------------------------------------------- /tests/mocking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/mocking.h -------------------------------------------------------------------------------- /tests/noexcept/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/noexcept/CMakeLists.txt -------------------------------------------------------------------------------- /tests/normal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/normal/CMakeLists.txt -------------------------------------------------------------------------------- /tests/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/pch.h -------------------------------------------------------------------------------- /tests/sanitize-address/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/sanitize-address/CMakeLists.txt -------------------------------------------------------------------------------- /tests/sanitize-undefined-behavior/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/sanitize-undefined-behavior/CMakeLists.txt -------------------------------------------------------------------------------- /tests/test_objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/test_objects.h -------------------------------------------------------------------------------- /tests/wiTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/wiTest.cpp -------------------------------------------------------------------------------- /tests/win7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/tests/win7/CMakeLists.txt -------------------------------------------------------------------------------- /vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-configuration.json -------------------------------------------------------------------------------- /vcpkg-overlay/catch2/except.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-overlay/catch2/except.patch -------------------------------------------------------------------------------- /vcpkg-overlay/catch2/fix-install-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-overlay/catch2/fix-install-path.patch -------------------------------------------------------------------------------- /vcpkg-overlay/catch2/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-overlay/catch2/portfile.cmake -------------------------------------------------------------------------------- /vcpkg-overlay/catch2/synch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-overlay/catch2/synch.patch -------------------------------------------------------------------------------- /vcpkg-overlay/catch2/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-overlay/catch2/vcpkg.json -------------------------------------------------------------------------------- /vcpkg-overlay/detours/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-overlay/detours/portfile.cmake -------------------------------------------------------------------------------- /vcpkg-overlay/detours/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-overlay/detours/usage -------------------------------------------------------------------------------- /vcpkg-overlay/detours/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg-overlay/detours/vcpkg.json -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/wil/HEAD/vcpkg.json --------------------------------------------------------------------------------