├── .config ├── 1espt │ └── PipelineAutobaseliningConfig.yml └── tsaoptions.json ├── .gdn ├── .gdnsettings └── .gitignore ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── actions │ ├── setup-llvm-mingw │ │ └── action.yml │ └── setup-llvm-msvc │ │ └── action.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── ci.yml │ └── stale.yml ├── .gitignore ├── .pipelines ├── OneBranch.Official.yml ├── OneBranch.PullRequest.yml ├── build.yml ├── jobs │ ├── OneBranchBuild.yml │ ├── OneBranchNuGet.yml │ ├── OneBranchTest.yml │ └── OneBranchVsix.yml ├── sync-mirror.yml └── variables │ ├── OneBranchVariables.yml │ └── version.yml ├── .runsettings ├── CMakeLists.txt ├── Directory.Build.Props ├── Directory.Packages.props ├── LICENSE ├── README.md ├── compile_tests.cmd ├── cppwinrt.sln ├── cppwinrt ├── app.manifest ├── cmd_reader.h ├── code_writers.h ├── component_writers.h ├── cppwinrt.vcxproj ├── cppwinrt.vcxproj.filters ├── file_writers.h ├── helpers.h ├── main.cpp ├── packages.config ├── pch.cpp ├── pch.h ├── settings.h ├── task_group.h ├── text_writer.h └── type_writers.h ├── cross-mingw-toolchain.cmake ├── docs ├── code_of_conduct.md ├── contributing.md └── security.md ├── fast_fwd ├── arm64 │ └── thunks.asm ├── fast_fwd.vcxproj ├── thunks.inc ├── win32 │ └── thunks.asm └── x64 │ └── thunks.asm ├── mingw-support ├── xmllite.def └── xmllite_i386.def ├── natvis ├── SignConfig.xml ├── cppwinrt.natvis ├── cppwinrt_visualizer.cpp ├── cppwinrt_visualizer.h ├── cppwinrtvisualizer.def ├── cppwinrtvisualizer.sln ├── cppwinrtvisualizer.vcxproj ├── cppwinrtvisualizer.vsdconfigxml ├── cppwinrtvisualizer15.vsdconfigxml ├── dllmain.cpp ├── object_visualizer.cpp ├── object_visualizer.h ├── packages.config ├── pch.cpp ├── pch.h ├── property_visualizer.cpp ├── property_visualizer.h └── type_resolver.cpp ├── nuget.config ├── nuget ├── CppWinrtRules.Project.xml ├── Microsoft.Windows.CppWinRT.nuspec ├── Microsoft.Windows.CppWinRT.props ├── Microsoft.Windows.CppWinRT.targets ├── SignConfig.xml ├── readme.md └── readme.txt ├── prebuild ├── CMakeLists.txt ├── main.cpp ├── pch.cpp ├── pch.h └── prebuild.vcxproj ├── prepare_versionless_diffs.cmd ├── run_tests.cmd ├── scratch ├── main.cpp ├── pch.cpp ├── pch.h └── scratch.vcxproj ├── strings ├── base_abi.h ├── base_activation.h ├── base_agile_ref.h ├── base_array.h ├── base_chrono.h ├── base_collections.h ├── base_collections_base.h ├── base_collections_input_iterable.h ├── base_collections_input_map.h ├── base_collections_input_map_view.h ├── base_collections_input_vector.h ├── base_collections_input_vector_view.h ├── base_collections_map.h ├── base_collections_vector.h ├── base_com_ptr.h ├── base_composable.h ├── base_coroutine_foundation.h ├── base_coroutine_system.h ├── base_coroutine_system_winui.h ├── base_coroutine_threadpool.h ├── base_coroutine_ui_core.h ├── base_deferral.h ├── base_delegate.h ├── base_error.h ├── base_events.h ├── base_extern.h ├── base_fast_forward.h ├── base_foundation.h ├── base_handle.h ├── base_identity.h ├── base_implements.h ├── base_includes.h ├── base_iterator.h ├── base_lock.h ├── base_macros.h ├── base_marshaler.h ├── base_meta.h ├── base_natvis.h ├── base_reference_produce.h ├── base_reference_produce_1.h ├── base_security.h ├── base_std_hash.h ├── base_string.h ├── base_string_input.h ├── base_string_operators.h ├── base_stringable_format.h ├── base_stringable_format_1.h ├── base_stringable_streams.h ├── base_stringable_to_hstring.h ├── base_types.h ├── base_version.h ├── base_version_odr.h ├── base_weak_ref.h ├── base_windows.h ├── base_xaml_component_connector.h ├── base_xaml_component_connector_winui.h └── base_xaml_typename.h ├── test ├── CMakeLists.txt ├── catch.hpp ├── mingw_com_support.h ├── nuget │ ├── ConsoleApplication1 │ │ ├── ConsoleApplication1.vcxproj │ │ ├── ConsoleApplication1.vcxproj.filters │ │ ├── ConsoleApplication1Class.cpp │ │ ├── ConsoleApplication1Class.h │ │ ├── ConsoleApplication1Class.idl │ │ ├── PropertySheet.props │ │ ├── main.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── NuGetTest.sln │ ├── TestApp │ │ ├── App.cpp │ │ ├── App.h │ │ ├── App.idl │ │ ├── App.xaml │ │ ├── Assets │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── MainPage.cpp │ │ ├── MainPage.h │ │ ├── MainPage.idl │ │ ├── MainPage.xaml │ │ ├── Package.appxmanifest │ │ ├── PropertySheet.props │ │ ├── TestApp.vcxproj │ │ ├── TestApp.vcxproj.filters │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ ├── TestProxyStub │ │ ├── IAsyncContract.idl │ │ ├── IAsyncContractParameter.idl │ │ ├── TestProxyStub.def │ │ ├── TestProxyStub.vcxproj │ │ ├── pch.cpp │ │ └── pch.h │ ├── TestRuntimeComponent1 │ │ ├── PropertySheet.props │ │ ├── TestRuntimeComponent1.def │ │ ├── TestRuntimeComponent1.vcxproj │ │ ├── TestRuntimeComponent1.vcxproj.filters │ │ ├── TestRuntimeComponent1Class.cpp │ │ ├── TestRuntimeComponent1Class.h │ │ ├── TestRuntimeComponent1Class.idl │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ ├── TestRuntimeComponent2 │ │ ├── PropertySheet.props │ │ ├── TestRuntimeComponent2.def │ │ ├── TestRuntimeComponent2.vcxproj │ │ ├── TestRuntimeComponent2.vcxproj.filters │ │ ├── TestRuntimeComponent2Class.cpp │ │ ├── TestRuntimeComponent2Class.h │ │ ├── TestRuntimeComponent2Class.idl │ │ ├── module.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ ├── TestRuntimeComponent3 │ │ ├── PropertySheet.props │ │ ├── TestRuntimeComponent3.def │ │ ├── TestRuntimeComponent3.vcxproj │ │ ├── TestRuntimeComponent3.vcxproj.filters │ │ ├── TestRuntimeComponent3Class.cpp │ │ ├── TestRuntimeComponent3Class.h │ │ ├── TestRuntimeComponent3Class.idl │ │ ├── module.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ ├── TestRuntimeComponentCSharp │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── TestRuntimeComponentCSharp.csproj │ │ └── TestRuntimeComponentCSharpClass.cs │ ├── TestRuntimeComponentCX │ │ ├── TestRuntimeComponentCX.vcxproj │ │ ├── TestRuntimeComponentCX.vcxproj.filters │ │ ├── TestRuntimeComponentCXClass.cpp │ │ ├── TestRuntimeComponentCXClass.h │ │ ├── pch.cpp │ │ └── pch.h │ ├── TestRuntimeComponentCXReferencingWinRTStaticLibrary │ │ ├── CxClass.cpp │ │ ├── CxClass.h │ │ ├── TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj │ │ ├── TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj.filters │ │ ├── pch.cpp │ │ └── pch.h │ ├── TestRuntimeComponentEmpty │ │ ├── PropertySheet.props │ │ ├── TestRuntimeComponentEmpty.def │ │ ├── TestRuntimeComponentEmpty.vcxproj │ │ ├── TestRuntimeComponentEmpty.vcxproj.filters │ │ ├── module.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ ├── TestRuntimeComponentNamespaceUnderscore │ │ ├── PropertySheet.props │ │ ├── TestRuntimeComponentNamespaceUnderscore.def │ │ ├── TestRuntimeComponentNamespaceUnderscore.vcxproj │ │ ├── TestRuntimeComponentNamespaceUnderscore.vcxproj.filters │ │ ├── TestRuntimeComponentNamespaceUnderscoreClass.cpp │ │ ├── TestRuntimeComponentNamespaceUnderscoreClass.h │ │ ├── TestRuntimeComponentNamespaceUnderscoreClass.idl │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ ├── TestStaticLibrary1 │ │ ├── TestStaticLibrary1.vcxproj │ │ ├── TestStaticLibrary1.vcxproj.filters │ │ ├── TestStaticLibrary1Class.cpp │ │ ├── TestStaticLibrary1Class.h │ │ ├── TestStaticLibrary1Class.idl │ │ ├── pch.cpp │ │ └── pch.h │ ├── TestStaticLibrary2 │ │ ├── TestStaticLibrary2.vcxproj │ │ ├── TestStaticLibrary2.vcxproj.filters │ │ ├── TestStaticLibrary2Class.cpp │ │ ├── TestStaticLibrary2Class.h │ │ ├── TestStaticLibrary2Class.idl │ │ ├── pch.cpp │ │ └── pch.h │ ├── TestStaticLibrary3 │ │ ├── TestStaticLibrary3.vcxproj │ │ ├── TestStaticLibrary3.vcxproj.filters │ │ ├── TestStaticLibrary3Class.cpp │ │ ├── TestStaticLibrary3Class.h │ │ ├── TestStaticLibrary3Class.idl │ │ ├── pch.cpp │ │ └── pch.h │ ├── TestStaticLibrary4 │ │ ├── TestStaticLibrary4.vcxproj │ │ ├── TestStaticLibrary4.vcxproj.filters │ │ ├── TestStaticLibrary4Class.cpp │ │ ├── TestStaticLibrary4Class.h │ │ ├── TestStaticLibrary4Class.idl │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── targetver.h │ ├── TestStaticLibrary5 │ │ ├── TestStaticLibrary5.vcxproj │ │ ├── TestStaticLibrary5.vcxproj.filters │ │ ├── TestStaticLibrary5Class.cpp │ │ ├── TestStaticLibrary5Class.h │ │ ├── TestStaticLibrary5Class.idl │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── targetver.h │ ├── TestStaticLibrary6 │ │ ├── TestNamespace.cpp │ │ ├── TestNamespace.h │ │ ├── TestNamespace.idl │ │ ├── TestStaticLibrary6.vcxproj │ │ ├── TestStaticLibrary6.vcxproj.filters │ │ ├── TestStaticLibrary6Class.cpp │ │ ├── TestStaticLibrary6Class.h │ │ ├── TestStaticLibrary6Class.idl │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── targetver.h │ └── TestStaticLibrary7 │ │ ├── PropertySheet.props │ │ ├── TestStaticLibrary7.vcxproj │ │ ├── TestStaticLibrary7.vcxproj.filters │ │ ├── TestStaticLibrary7Class.cpp │ │ ├── TestStaticLibrary7Class.h │ │ ├── TestStaticLibrary7Class.idl │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt ├── old_tests │ ├── CMakeLists.txt │ ├── Component │ │ ├── Component.idl │ │ ├── Component.vcxproj │ │ ├── Component.vcxproj.filters │ │ ├── Component_h.h │ │ ├── CustomBase.cpp │ │ ├── CustomBase.h │ │ ├── Errors.cpp │ │ ├── Errors.h │ │ ├── Events.cpp │ │ ├── Events.h │ │ ├── FastInput.cpp │ │ ├── FastInput.h │ │ ├── FastInputMap.cpp │ │ ├── FastInputMap.h │ │ ├── FastInputVector.cpp │ │ ├── FastInputVector.h │ │ ├── NonCachedStatic.cpp │ │ ├── NonCachedStatic.h │ │ ├── Parameters.cpp │ │ ├── Parameters.h │ │ ├── Static.cpp │ │ ├── Static.h │ │ ├── Structures.cpp │ │ ├── Structures.h │ │ ├── module.def │ │ ├── pch.cpp │ │ └── pch.h │ ├── Composable │ │ ├── Base.cpp │ │ ├── Base.h │ │ ├── Composable.idl │ │ ├── Composable.vcxproj │ │ ├── Composable.vcxproj.filters │ │ ├── Composable_h.h │ │ ├── Derived.cpp │ │ ├── Derived.h │ │ ├── module.def │ │ ├── precomp.cpp │ │ └── precomp.hpp │ └── UnitTests │ │ ├── Bindable.cpp │ │ ├── Boxing2.cpp │ │ ├── CMakeLists.txt │ │ ├── Composable.cpp │ │ ├── Errors.cpp │ │ ├── Events.cpp │ │ ├── FastInput.cpp │ │ ├── FastStrings.cpp │ │ ├── Generics.cpp │ │ ├── Hash.cpp │ │ ├── IInspectable_GetIids.cpp │ │ ├── IInspectable_GetRuntimeClassName.cpp │ │ ├── IInspectable_GetTrustLevel.cpp │ │ ├── IReference.cpp │ │ ├── IUnknown_QueryInterface.cpp │ │ ├── Main.cpp │ │ ├── Parameters.cpp │ │ ├── Reference.cpp │ │ ├── References.cpp │ │ ├── Release.cpp │ │ ├── Security.cpp │ │ ├── StructCodeGen.cpp │ │ ├── Structures.cpp │ │ ├── Tests.vcxproj │ │ ├── Tests.vcxproj.filters │ │ ├── TryLookup.cpp │ │ ├── VariadicDelegate.cpp │ │ ├── abi_guard.cpp │ │ ├── agile_ref.cpp │ │ ├── agility.cpp │ │ ├── apartment_context.cpp │ │ ├── array.cpp │ │ ├── as.cpp │ │ ├── as_implements.cpp │ │ ├── async.cpp │ │ ├── async_cancel.cpp │ │ ├── boxing.cpp │ │ ├── buffer.cpp │ │ ├── capture.cpp │ │ ├── casts.cpp │ │ ├── char16.cpp │ │ ├── clock.cpp │ │ ├── collection_base.cpp │ │ ├── com_ptr.cpp │ │ ├── com_ref.cpp │ │ ├── conditional_implements.cpp │ │ ├── conditional_implements_pure.cpp │ │ ├── constexpr.cpp │ │ ├── create_instance.cpp │ │ ├── delegate.cpp │ │ ├── delegate_lambda.cpp │ │ ├── delegate_weak_strong.cpp │ │ ├── enum_flags.cpp │ │ ├── error_chaining.cpp │ │ ├── event_consume.cpp │ │ ├── event_produce.cpp │ │ ├── factory_cache.cpp │ │ ├── foundation.cpp │ │ ├── get_activation_factory.cpp │ │ ├── handle.cpp │ │ ├── hresult_error.cpp │ │ ├── hstring.cpp │ │ ├── hstring_builder.cpp │ │ ├── implements_nested.cpp │ │ ├── interop.cpp │ │ ├── lock.cpp │ │ ├── make_self.cpp │ │ ├── marshal.cpp │ │ ├── meta.cpp │ │ ├── natvis.cpp │ │ ├── param_hstring.cpp │ │ ├── param_iterable.cpp │ │ ├── param_map.cpp │ │ ├── param_map_view.cpp │ │ ├── param_vector.cpp │ │ ├── param_vector_view.cpp │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── produce.cpp │ │ ├── produce_IPropertyValue.h │ │ ├── produce_async.cpp │ │ ├── produce_map.cpp │ │ ├── produce_vector.cpp │ │ ├── properties.cpp │ │ ├── range_for.cpp │ │ ├── reflect.cpp │ │ ├── sdk.cpp │ │ ├── single_threaded_map.cpp │ │ ├── single_threaded_vector.cpp │ │ ├── smart_pointers.cpp │ │ ├── streams.cpp │ │ ├── string_view_compare.h │ │ ├── struct.cpp │ │ ├── to_hstring.cpp │ │ ├── weak.cpp │ │ └── xaml_typename.cpp ├── test │ ├── CMakeLists.txt │ ├── GetMany.cpp │ ├── abi_args.cpp │ ├── abi_guard.cpp │ ├── agile_ref.cpp │ ├── agility.cpp │ ├── async_auto_cancel.cpp │ ├── async_cancel_callback.cpp │ ├── async_check_cancel.cpp │ ├── async_completed.cpp │ ├── async_local.cpp │ ├── async_no_suspend.cpp │ ├── async_progress.cpp │ ├── async_propagate_cancel.cpp │ ├── async_result.cpp │ ├── async_return.cpp │ ├── async_suspend.cpp │ ├── async_throw.cpp │ ├── async_wait_for.cpp │ ├── await_adapter.cpp │ ├── await_completed.cpp │ ├── box_array.cpp │ ├── box_delegate.cpp │ ├── box_guid.cpp │ ├── capture.cpp │ ├── cmd_reader.cpp │ ├── coro_foundation.cpp │ ├── coro_system.cpp │ ├── coro_threadpool.cpp │ ├── coro_ui_core.cpp │ ├── custom_activation.cpp │ ├── custom_error.cpp │ ├── delegate.cpp │ ├── delegates.cpp │ ├── disconnected.cpp │ ├── enum.cpp │ ├── error_info.cpp │ ├── event_clear.cpp │ ├── event_deferral.cpp │ ├── fast_iterator.cpp │ ├── final_release.cpp │ ├── generic_type_names.cpp │ ├── generic_types.cpp │ ├── generic_types.h │ ├── get_activation_factory.cpp │ ├── guid.cpp │ ├── guid_include.cpp │ ├── hresult_class_not_registered.cpp │ ├── hstring_empty.cpp │ ├── iid_ppv_args.cpp │ ├── in_params.cpp │ ├── in_params_abi.cpp │ ├── initialize.cpp │ ├── inspectable_interop.cpp │ ├── interop.cpp │ ├── invalid_events.cpp │ ├── main.cpp │ ├── memory_buffer.cpp │ ├── missing_required_interfaces.cpp │ ├── module_lock_dll.cpp │ ├── multi_threaded_common.h │ ├── multi_threaded_map.cpp │ ├── multi_threaded_vector.cpp │ ├── names.cpp │ ├── no_make_detection.cpp │ ├── noexcept.cpp │ ├── numerics.cpp │ ├── observable_index_of.cpp │ ├── optional.cpp │ ├── out_params.cpp │ ├── out_params_abi.cpp │ ├── out_params_bad.cpp │ ├── parent_includes.cpp │ ├── pch.cpp │ ├── pch.h │ ├── rational.cpp │ ├── return_params.cpp │ ├── return_params_abi.cpp │ ├── single_threaded_observable_vector.cpp │ ├── struct_delegate.cpp │ ├── structs.cpp │ ├── suppress_error_info.cpp │ ├── tearoff.cpp │ ├── test.vcxproj │ ├── thread_pool.cpp │ ├── uniform_in_params.cpp │ ├── variadic_delegate.cpp │ ├── velocity.cpp │ └── when.cpp ├── test_component │ ├── Class.cpp │ ├── Class.h │ ├── Optional.cpp │ ├── Optional.h │ ├── OverloadClass.cpp │ ├── OverloadClass.h │ ├── Simple.cpp │ ├── Simple.h │ ├── Velocity.Class1.cpp │ ├── Velocity.Class1.h │ ├── Velocity.Class2.cpp │ ├── Velocity.Class2.h │ ├── Velocity.Class4.cpp │ ├── Velocity.Class4.h │ ├── Windows.Class.cpp │ ├── Windows.Class.h │ ├── exports.def │ ├── module.cpp │ ├── pch.cpp │ ├── pch.h │ ├── test_auto.cpp │ ├── test_component.idl │ ├── test_component.vcxproj │ └── test_overload.cpp ├── test_component_base │ ├── HierarchyA.cpp │ ├── HierarchyA.h │ ├── HierarchyB.cpp │ ├── HierarchyB.h │ ├── exports.def │ ├── pch.cpp │ ├── pch.h │ ├── test_component_base.idl │ └── test_component_base.vcxproj ├── test_component_derived │ ├── Nested.HierarchyC.cpp │ ├── Nested.HierarchyC.h │ ├── Nested.HierarchyD.cpp │ ├── Nested.HierarchyD.h │ ├── exports.def │ ├── pch.cpp │ ├── pch.h │ ├── test_component_derived.idl │ └── test_component_derived.vcxproj ├── test_component_fast │ ├── Composition.CompositionObject.cpp │ ├── Composition.CompositionObject.h │ ├── Composition.Compositor.cpp │ ├── Composition.Compositor.h │ ├── Composition.SpriteVisual.cpp │ ├── Composition.SpriteVisual.h │ ├── Composition.Visual.cpp │ ├── Composition.Visual.h │ ├── Nomadic.cpp │ ├── Nomadic.h │ ├── Simple.cpp │ ├── Simple.h │ ├── exports.def │ ├── pch.cpp │ ├── pch.h │ ├── test_component_fast.idl │ └── test_component_fast.vcxproj ├── test_component_folders │ ├── Class.cpp │ ├── Class.h │ ├── Nested.NestedClass.cpp │ ├── Nested.NestedClass.h │ ├── exports.def │ ├── pch.cpp │ ├── pch.h │ ├── test_component_folders.idl │ └── test_component_folders.vcxproj ├── test_component_no_pch │ ├── Class.cpp │ ├── Class.h │ ├── exports.def │ ├── test_component_no_pch.idl │ └── test_component_no_pch.vcxproj ├── test_cpp20 │ ├── CMakeLists.txt │ ├── array_span.cpp │ ├── await_completed.cpp │ ├── clang_only.cpp │ ├── custom_error.cpp │ ├── format.cpp │ ├── hstring.cpp │ ├── main.cpp │ ├── pch.cpp │ ├── pch.h │ ├── ranges.cpp │ └── test_cpp20.vcxproj ├── test_cpp20_no_sourcelocation │ ├── CMakeLists.txt │ ├── custom_error.cpp │ ├── main.cpp │ ├── pch.cpp │ ├── pch.h │ └── test_cpp20_no_sourcelocation.vcxproj ├── test_fast │ ├── Composition.cpp │ ├── Nomadic.cpp │ ├── Simple.cpp │ ├── main.cpp │ ├── pch.cpp │ ├── pch.h │ └── test_fast.vcxproj ├── test_fast_fwd │ ├── FastForwarderTest.idl │ ├── FastForwarderTests.cpp │ ├── main.cpp │ ├── pch.cpp │ ├── pch.h │ ├── test_fast_fwd.vcxproj │ └── test_fast_fwd.vcxproj.filters ├── test_module_lock_custom │ ├── main.cpp │ └── test_module_lock_custom.vcxproj ├── test_module_lock_none │ ├── main.cpp │ └── test_module_lock_none.vcxproj └── test_slow │ ├── Composition.cpp │ ├── Simple.cpp │ ├── main.cpp │ ├── pch.cpp │ ├── pch.h │ └── test_slow.vcxproj └── vsix ├── Dev16 ├── Component │ └── source.extension.vsixmanifest ├── Standalone │ └── source.extension.vsixmanifest ├── VSPackage.cs └── vsix.Dev16.csproj ├── Dev17 ├── Component │ └── source.extension.vsixmanifest ├── Standalone │ └── source.extension.vsixmanifest ├── VSPackage.cs └── vsix.Dev17.csproj ├── Directory.Build.Props ├── Extension.targets ├── ItemTemplates ├── BlankPage │ ├── BlankPage.cpp │ ├── BlankPage.h │ ├── BlankPage.idl │ ├── BlankPage.xaml │ └── cppwinrt_BlankPage.vstemplate ├── BlankUserControl │ ├── BlankUserControl.cpp │ ├── BlankUserControl.h │ ├── BlankUserControl.idl │ ├── BlankUserControl.xaml │ └── cppwinrt_BlankUserControl.vstemplate ├── VSTemplateDir.vstman └── ViewModel │ ├── ViewModel.cpp │ ├── ViewModel.h │ ├── ViewModel.idl │ └── cppwinrt_ViewModel.vstemplate ├── ProjectTemplates ├── VC │ ├── Windows Desktop │ │ ├── ConsoleApplication │ │ │ ├── ConsoleApplication.vcxproj │ │ │ ├── ConsoleApplication.vcxproj.filters │ │ │ ├── PropertySheet.props │ │ │ ├── cppwinrt_ConsoleApplication.vstemplate │ │ │ ├── main.cpp │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ └── readme.txt │ │ └── WindowsApplication │ │ │ ├── PropertySheet.props │ │ │ ├── WindowsApplication.exe.manifest │ │ │ ├── WindowsApplication.rc │ │ │ ├── WindowsApplication.vcxproj │ │ │ ├── WindowsApplication.vcxproj.filters │ │ │ ├── cppwinrt_WindowsApplication.vstemplate │ │ │ ├── pch.cpp │ │ │ ├── pch.h │ │ │ ├── readme.txt │ │ │ ├── resource.h │ │ │ └── winmain.cpp │ └── Windows Universal │ │ ├── BlankApp │ │ ├── App.cpp │ │ ├── App.h │ │ ├── App.idl │ │ ├── App.xaml │ │ ├── BlankApp.vcxproj │ │ ├── BlankApp.vcxproj.filters │ │ ├── LockScreenLogo.scale-200.png │ │ ├── MainPage.cpp │ │ ├── MainPage.h │ │ ├── MainPage.idl │ │ ├── MainPage.xaml │ │ ├── Package.appxmanifest │ │ ├── PropertySheet.props │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── cppwinrt_BlankApp.vstemplate │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ │ ├── CoreApp │ │ ├── App.cpp │ │ ├── CoreApp.vcxproj │ │ ├── CoreApp.vcxproj.filters │ │ ├── LockScreenLogo.scale-200.png │ │ ├── Package.appxmanifest │ │ ├── PropertySheet.props │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── cppwinrt_CoreApp.vstemplate │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ │ ├── StaticLibrary │ │ ├── Class.cpp │ │ ├── Class.h │ │ ├── Class.idl │ │ ├── PropertySheet.props │ │ ├── StaticLibrary.vcxproj │ │ ├── StaticLibrary.vcxproj.filters │ │ ├── cppwinrt_StaticLibrary.vstemplate │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt │ │ └── WindowsRuntimeComponent │ │ ├── Class.cpp │ │ ├── Class.h │ │ ├── Class.idl │ │ ├── PropertySheet.props │ │ ├── WindowsRuntimeComponent.def │ │ ├── WindowsRuntimeComponent.vcxproj │ │ ├── WindowsRuntimeComponent.vcxproj.filters │ │ ├── cppwinrt_WindowsRuntimeComponent.vstemplate │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt └── VSTemplateDir.vstman ├── Resources ├── VSPackage.resx ├── cs-CZ │ └── VSPackage.cs-CZ.resx ├── de-DE │ └── VSPackage.de-DE.resx ├── es-ES │ └── VSPackage.es-ES.resx ├── fr-FR │ └── VSPackage.fr-FR.resx ├── it-IT │ └── VSPackage.it-IT.resx ├── ja-JP │ └── VSPackage.ja-JP.resx ├── ko-KR │ └── VSPackage.ko-KR.resx ├── pl-PL │ └── VSPackage.pl-PL.resx ├── pt-BR │ └── VSPackage.pt-BR.resx ├── ru-RU │ └── VSPackage.ru-RU.resx ├── tr-TR │ └── VSPackage.tr-TR.resx ├── zh-CN │ └── VSPackage.zh-CN.resx └── zh-TW │ └── VSPackage.zh-TW.resx ├── SignConfig.xml ├── cppwinrt.ico ├── cppwinrt.png ├── cppwinrt.xcf ├── extension.manifest.json ├── overview.md ├── readme.md └── vsix.sln /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.gdn/.gdnsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.gdn/.gdnsettings -------------------------------------------------------------------------------- /.gdn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.gdn/.gitignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/actions/setup-llvm-mingw/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.github/actions/setup-llvm-mingw/action.yml -------------------------------------------------------------------------------- /.github/actions/setup-llvm-msvc/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.github/actions/setup-llvm-msvc/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.gitignore -------------------------------------------------------------------------------- /.pipelines/OneBranch.Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/OneBranch.Official.yml -------------------------------------------------------------------------------- /.pipelines/OneBranch.PullRequest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/OneBranch.PullRequest.yml -------------------------------------------------------------------------------- /.pipelines/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/build.yml -------------------------------------------------------------------------------- /.pipelines/jobs/OneBranchBuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/jobs/OneBranchBuild.yml -------------------------------------------------------------------------------- /.pipelines/jobs/OneBranchNuGet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/jobs/OneBranchNuGet.yml -------------------------------------------------------------------------------- /.pipelines/jobs/OneBranchTest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/jobs/OneBranchTest.yml -------------------------------------------------------------------------------- /.pipelines/jobs/OneBranchVsix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/jobs/OneBranchVsix.yml -------------------------------------------------------------------------------- /.pipelines/sync-mirror.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/sync-mirror.yml -------------------------------------------------------------------------------- /.pipelines/variables/OneBranchVariables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/variables/OneBranchVariables.yml -------------------------------------------------------------------------------- /.pipelines/variables/version.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.pipelines/variables/version.yml -------------------------------------------------------------------------------- /.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/.runsettings -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/Directory.Build.Props -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/README.md -------------------------------------------------------------------------------- /compile_tests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/compile_tests.cmd -------------------------------------------------------------------------------- /cppwinrt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt.sln -------------------------------------------------------------------------------- /cppwinrt/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/app.manifest -------------------------------------------------------------------------------- /cppwinrt/cmd_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/cmd_reader.h -------------------------------------------------------------------------------- /cppwinrt/code_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/code_writers.h -------------------------------------------------------------------------------- /cppwinrt/component_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/component_writers.h -------------------------------------------------------------------------------- /cppwinrt/cppwinrt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/cppwinrt.vcxproj -------------------------------------------------------------------------------- /cppwinrt/cppwinrt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/cppwinrt.vcxproj.filters -------------------------------------------------------------------------------- /cppwinrt/file_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/file_writers.h -------------------------------------------------------------------------------- /cppwinrt/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/helpers.h -------------------------------------------------------------------------------- /cppwinrt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/main.cpp -------------------------------------------------------------------------------- /cppwinrt/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/packages.config -------------------------------------------------------------------------------- /cppwinrt/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /cppwinrt/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/pch.h -------------------------------------------------------------------------------- /cppwinrt/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/settings.h -------------------------------------------------------------------------------- /cppwinrt/task_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/task_group.h -------------------------------------------------------------------------------- /cppwinrt/text_writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/text_writer.h -------------------------------------------------------------------------------- /cppwinrt/type_writers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cppwinrt/type_writers.h -------------------------------------------------------------------------------- /cross-mingw-toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/cross-mingw-toolchain.cmake -------------------------------------------------------------------------------- /docs/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/docs/code_of_conduct.md -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/docs/contributing.md -------------------------------------------------------------------------------- /docs/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/docs/security.md -------------------------------------------------------------------------------- /fast_fwd/arm64/thunks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/fast_fwd/arm64/thunks.asm -------------------------------------------------------------------------------- /fast_fwd/fast_fwd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/fast_fwd/fast_fwd.vcxproj -------------------------------------------------------------------------------- /fast_fwd/thunks.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/fast_fwd/thunks.inc -------------------------------------------------------------------------------- /fast_fwd/win32/thunks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/fast_fwd/win32/thunks.asm -------------------------------------------------------------------------------- /fast_fwd/x64/thunks.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/fast_fwd/x64/thunks.asm -------------------------------------------------------------------------------- /mingw-support/xmllite.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/mingw-support/xmllite.def -------------------------------------------------------------------------------- /mingw-support/xmllite_i386.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/mingw-support/xmllite_i386.def -------------------------------------------------------------------------------- /natvis/SignConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/SignConfig.xml -------------------------------------------------------------------------------- /natvis/cppwinrt.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/cppwinrt.natvis -------------------------------------------------------------------------------- /natvis/cppwinrt_visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/cppwinrt_visualizer.cpp -------------------------------------------------------------------------------- /natvis/cppwinrt_visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/cppwinrt_visualizer.h -------------------------------------------------------------------------------- /natvis/cppwinrtvisualizer.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/cppwinrtvisualizer.def -------------------------------------------------------------------------------- /natvis/cppwinrtvisualizer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/cppwinrtvisualizer.sln -------------------------------------------------------------------------------- /natvis/cppwinrtvisualizer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/cppwinrtvisualizer.vcxproj -------------------------------------------------------------------------------- /natvis/cppwinrtvisualizer.vsdconfigxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/cppwinrtvisualizer.vsdconfigxml -------------------------------------------------------------------------------- /natvis/cppwinrtvisualizer15.vsdconfigxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/cppwinrtvisualizer15.vsdconfigxml -------------------------------------------------------------------------------- /natvis/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/dllmain.cpp -------------------------------------------------------------------------------- /natvis/object_visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/object_visualizer.cpp -------------------------------------------------------------------------------- /natvis/object_visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/object_visualizer.h -------------------------------------------------------------------------------- /natvis/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/packages.config -------------------------------------------------------------------------------- /natvis/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /natvis/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/pch.h -------------------------------------------------------------------------------- /natvis/property_visualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/property_visualizer.cpp -------------------------------------------------------------------------------- /natvis/property_visualizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/property_visualizer.h -------------------------------------------------------------------------------- /natvis/type_resolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/natvis/type_resolver.cpp -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/nuget.config -------------------------------------------------------------------------------- /nuget/CppWinrtRules.Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/nuget/CppWinrtRules.Project.xml -------------------------------------------------------------------------------- /nuget/Microsoft.Windows.CppWinRT.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/nuget/Microsoft.Windows.CppWinRT.nuspec -------------------------------------------------------------------------------- /nuget/Microsoft.Windows.CppWinRT.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/nuget/Microsoft.Windows.CppWinRT.props -------------------------------------------------------------------------------- /nuget/Microsoft.Windows.CppWinRT.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/nuget/Microsoft.Windows.CppWinRT.targets -------------------------------------------------------------------------------- /nuget/SignConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/nuget/SignConfig.xml -------------------------------------------------------------------------------- /nuget/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/nuget/readme.md -------------------------------------------------------------------------------- /nuget/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/nuget/readme.txt -------------------------------------------------------------------------------- /prebuild/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/prebuild/CMakeLists.txt -------------------------------------------------------------------------------- /prebuild/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/prebuild/main.cpp -------------------------------------------------------------------------------- /prebuild/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /prebuild/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "text_writer.h" 4 | -------------------------------------------------------------------------------- /prebuild/prebuild.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/prebuild/prebuild.vcxproj -------------------------------------------------------------------------------- /prepare_versionless_diffs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/prepare_versionless_diffs.cmd -------------------------------------------------------------------------------- /run_tests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/run_tests.cmd -------------------------------------------------------------------------------- /scratch/main.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | 3 | using namespace winrt; 4 | 5 | int main() 6 | { 7 | } 8 | -------------------------------------------------------------------------------- /scratch/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /scratch/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/scratch/pch.h -------------------------------------------------------------------------------- /scratch/scratch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/scratch/scratch.vcxproj -------------------------------------------------------------------------------- /strings/base_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_abi.h -------------------------------------------------------------------------------- /strings/base_activation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_activation.h -------------------------------------------------------------------------------- /strings/base_agile_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_agile_ref.h -------------------------------------------------------------------------------- /strings/base_array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_array.h -------------------------------------------------------------------------------- /strings/base_chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_chrono.h -------------------------------------------------------------------------------- /strings/base_collections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections.h -------------------------------------------------------------------------------- /strings/base_collections_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections_base.h -------------------------------------------------------------------------------- /strings/base_collections_input_iterable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections_input_iterable.h -------------------------------------------------------------------------------- /strings/base_collections_input_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections_input_map.h -------------------------------------------------------------------------------- /strings/base_collections_input_map_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections_input_map_view.h -------------------------------------------------------------------------------- /strings/base_collections_input_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections_input_vector.h -------------------------------------------------------------------------------- /strings/base_collections_input_vector_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections_input_vector_view.h -------------------------------------------------------------------------------- /strings/base_collections_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections_map.h -------------------------------------------------------------------------------- /strings/base_collections_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_collections_vector.h -------------------------------------------------------------------------------- /strings/base_com_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_com_ptr.h -------------------------------------------------------------------------------- /strings/base_composable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_composable.h -------------------------------------------------------------------------------- /strings/base_coroutine_foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_coroutine_foundation.h -------------------------------------------------------------------------------- /strings/base_coroutine_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_coroutine_system.h -------------------------------------------------------------------------------- /strings/base_coroutine_system_winui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_coroutine_system_winui.h -------------------------------------------------------------------------------- /strings/base_coroutine_threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_coroutine_threadpool.h -------------------------------------------------------------------------------- /strings/base_coroutine_ui_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_coroutine_ui_core.h -------------------------------------------------------------------------------- /strings/base_deferral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_deferral.h -------------------------------------------------------------------------------- /strings/base_delegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_delegate.h -------------------------------------------------------------------------------- /strings/base_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_error.h -------------------------------------------------------------------------------- /strings/base_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_events.h -------------------------------------------------------------------------------- /strings/base_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_extern.h -------------------------------------------------------------------------------- /strings/base_fast_forward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_fast_forward.h -------------------------------------------------------------------------------- /strings/base_foundation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_foundation.h -------------------------------------------------------------------------------- /strings/base_handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_handle.h -------------------------------------------------------------------------------- /strings/base_identity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_identity.h -------------------------------------------------------------------------------- /strings/base_implements.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_implements.h -------------------------------------------------------------------------------- /strings/base_includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_includes.h -------------------------------------------------------------------------------- /strings/base_iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_iterator.h -------------------------------------------------------------------------------- /strings/base_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_lock.h -------------------------------------------------------------------------------- /strings/base_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_macros.h -------------------------------------------------------------------------------- /strings/base_marshaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_marshaler.h -------------------------------------------------------------------------------- /strings/base_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_meta.h -------------------------------------------------------------------------------- /strings/base_natvis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_natvis.h -------------------------------------------------------------------------------- /strings/base_reference_produce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_reference_produce.h -------------------------------------------------------------------------------- /strings/base_reference_produce_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_reference_produce_1.h -------------------------------------------------------------------------------- /strings/base_security.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_security.h -------------------------------------------------------------------------------- /strings/base_std_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_std_hash.h -------------------------------------------------------------------------------- /strings/base_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_string.h -------------------------------------------------------------------------------- /strings/base_string_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_string_input.h -------------------------------------------------------------------------------- /strings/base_string_operators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_string_operators.h -------------------------------------------------------------------------------- /strings/base_stringable_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_stringable_format.h -------------------------------------------------------------------------------- /strings/base_stringable_format_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_stringable_format_1.h -------------------------------------------------------------------------------- /strings/base_stringable_streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_stringable_streams.h -------------------------------------------------------------------------------- /strings/base_stringable_to_hstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_stringable_to_hstring.h -------------------------------------------------------------------------------- /strings/base_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_types.h -------------------------------------------------------------------------------- /strings/base_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_version.h -------------------------------------------------------------------------------- /strings/base_version_odr.h: -------------------------------------------------------------------------------- 1 | #define CPPWINRT_VERSION "%" 2 | 3 | -------------------------------------------------------------------------------- /strings/base_weak_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_weak_ref.h -------------------------------------------------------------------------------- /strings/base_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_windows.h -------------------------------------------------------------------------------- /strings/base_xaml_component_connector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_xaml_component_connector.h -------------------------------------------------------------------------------- /strings/base_xaml_component_connector_winui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_xaml_component_connector_winui.h -------------------------------------------------------------------------------- /strings/base_xaml_typename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/strings/base_xaml_typename.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/catch.hpp -------------------------------------------------------------------------------- /test/mingw_com_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/mingw_com_support.h -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/ConsoleApplication1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/ConsoleApplication1.vcxproj -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/ConsoleApplication1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/ConsoleApplication1.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/ConsoleApplication1Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/ConsoleApplication1Class.cpp -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/ConsoleApplication1Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/ConsoleApplication1Class.h -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/ConsoleApplication1Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/ConsoleApplication1Class.idl -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/PropertySheet.props -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/main.cpp -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/pch.h -------------------------------------------------------------------------------- /test/nuget/ConsoleApplication1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/ConsoleApplication1/readme.txt -------------------------------------------------------------------------------- /test/nuget/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/Directory.Build.props -------------------------------------------------------------------------------- /test/nuget/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/Directory.Build.targets -------------------------------------------------------------------------------- /test/nuget/NuGetTest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/NuGetTest.sln -------------------------------------------------------------------------------- /test/nuget/TestApp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/App.cpp -------------------------------------------------------------------------------- /test/nuget/TestApp/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/App.h -------------------------------------------------------------------------------- /test/nuget/TestApp/App.idl: -------------------------------------------------------------------------------- 1 | namespace TestApp 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /test/nuget/TestApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/App.xaml -------------------------------------------------------------------------------- /test/nuget/TestApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /test/nuget/TestApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /test/nuget/TestApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /test/nuget/TestApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /test/nuget/TestApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /test/nuget/TestApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /test/nuget/TestApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /test/nuget/TestApp/MainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/MainPage.cpp -------------------------------------------------------------------------------- /test/nuget/TestApp/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/MainPage.h -------------------------------------------------------------------------------- /test/nuget/TestApp/MainPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/MainPage.idl -------------------------------------------------------------------------------- /test/nuget/TestApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/MainPage.xaml -------------------------------------------------------------------------------- /test/nuget/TestApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/Package.appxmanifest -------------------------------------------------------------------------------- /test/nuget/TestApp/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/PropertySheet.props -------------------------------------------------------------------------------- /test/nuget/TestApp/TestApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/TestApp.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestApp/TestApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/TestApp.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestApp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestApp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/pch.h -------------------------------------------------------------------------------- /test/nuget/TestApp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestApp/readme.txt -------------------------------------------------------------------------------- /test/nuget/TestProxyStub/IAsyncContract.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestProxyStub/IAsyncContract.idl -------------------------------------------------------------------------------- /test/nuget/TestProxyStub/IAsyncContractParameter.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestProxyStub/IAsyncContractParameter.idl -------------------------------------------------------------------------------- /test/nuget/TestProxyStub/TestProxyStub.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestProxyStub/TestProxyStub.def -------------------------------------------------------------------------------- /test/nuget/TestProxyStub/TestProxyStub.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestProxyStub/TestProxyStub.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestProxyStub/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestProxyStub/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestProxyStub/pch.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/PropertySheet.props -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.def -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/TestRuntimeComponent1Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/TestRuntimeComponent1Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1Class.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/TestRuntimeComponent1Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/TestRuntimeComponent1Class.idl -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/pch.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent1/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent1/readme.txt -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/PropertySheet.props -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.def -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/TestRuntimeComponent2Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/TestRuntimeComponent2Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2Class.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/TestRuntimeComponent2Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/TestRuntimeComponent2Class.idl -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/module.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/pch.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent2/readme.txt -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/PropertySheet.props -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.def -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/TestRuntimeComponent3Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/TestRuntimeComponent3Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3Class.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/TestRuntimeComponent3Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/TestRuntimeComponent3Class.idl -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/module.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/pch.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponent3/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponent3/readme.txt -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCSharp/TestRuntimeComponentCSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCSharp/TestRuntimeComponentCSharp.csproj -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCSharp/TestRuntimeComponentCSharpClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCSharp/TestRuntimeComponentCSharpClass.cs -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCX.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCX.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCX.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCX.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCXClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCXClass.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCXClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCX/TestRuntimeComponentCXClass.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCX/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCX/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCX/pch.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/CxClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/CxClass.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/CxClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/CxClass.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/TestRuntimeComponentCXReferencingWinRTStaticLibrary.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentCXReferencingWinRTStaticLibrary/pch.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentEmpty/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentEmpty/PropertySheet.props -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.def -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentEmpty/TestRuntimeComponentEmpty.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentEmpty/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentEmpty/module.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentEmpty/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentEmpty/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentEmpty/pch.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentEmpty/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentEmpty/readme.txt -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/PropertySheet.props -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.def -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscore.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscoreClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscoreClass.cpp -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscoreClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscoreClass.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscoreClass.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/TestRuntimeComponentNamespaceUnderscoreClass.idl -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/pch.h -------------------------------------------------------------------------------- /test/nuget/TestRuntimeComponentNamespaceUnderscore/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestRuntimeComponentNamespaceUnderscore/readme.txt -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary1/TestStaticLibrary1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary1/TestStaticLibrary1.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary1/TestStaticLibrary1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary1/TestStaticLibrary1.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary1/TestStaticLibrary1Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary1/TestStaticLibrary1Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary1/TestStaticLibrary1Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary1/TestStaticLibrary1Class.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary1/TestStaticLibrary1Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary1/TestStaticLibrary1Class.idl -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary1/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary1/pch.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary1/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary1/pch.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary2/TestStaticLibrary2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary2/TestStaticLibrary2.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary2/TestStaticLibrary2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary2/TestStaticLibrary2.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary2/TestStaticLibrary2Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary2/TestStaticLibrary2Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary2/TestStaticLibrary2Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary2/TestStaticLibrary2Class.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary2/TestStaticLibrary2Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary2/TestStaticLibrary2Class.idl -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary2/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary2/pch.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary2/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary2/pch.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary3/TestStaticLibrary3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary3/TestStaticLibrary3.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary3/TestStaticLibrary3.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary3/TestStaticLibrary3.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary3/TestStaticLibrary3Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary3/TestStaticLibrary3Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary3/TestStaticLibrary3Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary3/TestStaticLibrary3Class.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary3/TestStaticLibrary3Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary3/TestStaticLibrary3Class.idl -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary3/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary3/pch.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary3/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary3/pch.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary4/TestStaticLibrary4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary4/TestStaticLibrary4.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary4/TestStaticLibrary4.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary4/TestStaticLibrary4.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary4/TestStaticLibrary4Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary4/TestStaticLibrary4Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary4/TestStaticLibrary4Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary4/TestStaticLibrary4Class.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary4/TestStaticLibrary4Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary4/TestStaticLibrary4Class.idl -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary4/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary4/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary4/pch.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary4/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary4/targetver.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary5/TestStaticLibrary5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary5/TestStaticLibrary5.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary5/TestStaticLibrary5.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary5/TestStaticLibrary5.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary5/TestStaticLibrary5Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary5/TestStaticLibrary5Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary5/TestStaticLibrary5Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary5/TestStaticLibrary5Class.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary5/TestStaticLibrary5Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary5/TestStaticLibrary5Class.idl -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary5/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary5/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary5/pch.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary5/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary5/targetver.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/TestNamespace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/TestNamespace.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/TestNamespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/TestNamespace.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/TestNamespace.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/TestNamespace.idl -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/TestStaticLibrary6.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/TestStaticLibrary6.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/TestStaticLibrary6.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/TestStaticLibrary6.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/TestStaticLibrary6Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/TestStaticLibrary6Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/TestStaticLibrary6Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/TestStaticLibrary6Class.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/TestStaticLibrary6Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/TestStaticLibrary6Class.idl -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/pch.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary6/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary6/targetver.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary7/PropertySheet.props -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/TestStaticLibrary7.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary7/TestStaticLibrary7.vcxproj -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/TestStaticLibrary7.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary7/TestStaticLibrary7.vcxproj.filters -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/TestStaticLibrary7Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary7/TestStaticLibrary7Class.cpp -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/TestStaticLibrary7Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary7/TestStaticLibrary7Class.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/TestStaticLibrary7Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary7/TestStaticLibrary7Class.idl -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary7/pch.h -------------------------------------------------------------------------------- /test/nuget/TestStaticLibrary7/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/nuget/TestStaticLibrary7/readme.txt -------------------------------------------------------------------------------- /test/old_tests/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(UnitTests) 2 | -------------------------------------------------------------------------------- /test/old_tests/Component/Component.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Component.idl -------------------------------------------------------------------------------- /test/old_tests/Component/Component.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Component.vcxproj -------------------------------------------------------------------------------- /test/old_tests/Component/Component.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Component.vcxproj.filters -------------------------------------------------------------------------------- /test/old_tests/Component/Component_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Component_h.h -------------------------------------------------------------------------------- /test/old_tests/Component/CustomBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/CustomBase.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/CustomBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/CustomBase.h -------------------------------------------------------------------------------- /test/old_tests/Component/Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Errors.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Errors.h -------------------------------------------------------------------------------- /test/old_tests/Component/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Events.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/Events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Events.h -------------------------------------------------------------------------------- /test/old_tests/Component/FastInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/FastInput.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/FastInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/FastInput.h -------------------------------------------------------------------------------- /test/old_tests/Component/FastInputMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/FastInputMap.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/FastInputMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/FastInputMap.h -------------------------------------------------------------------------------- /test/old_tests/Component/FastInputVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/FastInputVector.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/FastInputVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/FastInputVector.h -------------------------------------------------------------------------------- /test/old_tests/Component/NonCachedStatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/NonCachedStatic.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/NonCachedStatic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/NonCachedStatic.h -------------------------------------------------------------------------------- /test/old_tests/Component/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Parameters.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Parameters.h -------------------------------------------------------------------------------- /test/old_tests/Component/Static.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Static.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/Static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Static.h -------------------------------------------------------------------------------- /test/old_tests/Component/Structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Structures.cpp -------------------------------------------------------------------------------- /test/old_tests/Component/Structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/Structures.h -------------------------------------------------------------------------------- /test/old_tests/Component/module.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/module.def -------------------------------------------------------------------------------- /test/old_tests/Component/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/old_tests/Component/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Component/pch.h -------------------------------------------------------------------------------- /test/old_tests/Composable/Base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/Base.cpp -------------------------------------------------------------------------------- /test/old_tests/Composable/Base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/Base.h -------------------------------------------------------------------------------- /test/old_tests/Composable/Composable.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/Composable.idl -------------------------------------------------------------------------------- /test/old_tests/Composable/Composable.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/Composable.vcxproj -------------------------------------------------------------------------------- /test/old_tests/Composable/Composable.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/Composable.vcxproj.filters -------------------------------------------------------------------------------- /test/old_tests/Composable/Composable_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/Composable_h.h -------------------------------------------------------------------------------- /test/old_tests/Composable/Derived.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/Derived.cpp -------------------------------------------------------------------------------- /test/old_tests/Composable/Derived.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/Derived.h -------------------------------------------------------------------------------- /test/old_tests/Composable/module.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/module.def -------------------------------------------------------------------------------- /test/old_tests/Composable/precomp.cpp: -------------------------------------------------------------------------------- 1 | #include "precomp.hpp" 2 | -------------------------------------------------------------------------------- /test/old_tests/Composable/precomp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/Composable/precomp.hpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Bindable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Bindable.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Boxing2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Boxing2.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/CMakeLists.txt -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Composable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Composable.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Errors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Errors.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Events.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/FastInput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/FastInput.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/FastStrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/FastStrings.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Generics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Generics.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Hash.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/IInspectable_GetIids.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/IInspectable_GetIids.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/IInspectable_GetRuntimeClassName.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/IInspectable_GetRuntimeClassName.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/IInspectable_GetTrustLevel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/IInspectable_GetTrustLevel.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/IReference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/IReference.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/IUnknown_QueryInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/IUnknown_QueryInterface.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Main.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Parameters.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Reference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Reference.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/References.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/References.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Release.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Security.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Security.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/StructCodeGen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/StructCodeGen.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Structures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Structures.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Tests.vcxproj -------------------------------------------------------------------------------- /test/old_tests/UnitTests/Tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/Tests.vcxproj.filters -------------------------------------------------------------------------------- /test/old_tests/UnitTests/TryLookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/TryLookup.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/VariadicDelegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/VariadicDelegate.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/abi_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/abi_guard.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/agile_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/agile_ref.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/agility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/agility.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/apartment_context.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/apartment_context.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/array.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/as.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/as.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/as_implements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/as_implements.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/async.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/async_cancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/async_cancel.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/boxing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/boxing.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/buffer.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/capture.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/casts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/casts.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/char16.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/char16.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/clock.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/collection_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/collection_base.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/com_ptr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/com_ptr.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/com_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/com_ref.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/conditional_implements.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/conditional_implements.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/conditional_implements_pure.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/conditional_implements_pure.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/constexpr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/constexpr.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/create_instance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/create_instance.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/delegate.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/delegate_lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/delegate_lambda.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/delegate_weak_strong.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/delegate_weak_strong.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/enum_flags.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/enum_flags.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/error_chaining.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/error_chaining.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/event_consume.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/event_consume.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/event_produce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/event_produce.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/factory_cache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/factory_cache.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/foundation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/foundation.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/get_activation_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/get_activation_factory.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/handle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/handle.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/hresult_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/hresult_error.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/hstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/hstring.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/hstring_builder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/hstring_builder.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/implements_nested.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/implements_nested.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/interop.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/lock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/lock.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/make_self.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/make_self.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/marshal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/marshal.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/meta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/meta.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/natvis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/natvis.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/param_hstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/param_hstring.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/param_iterable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/param_iterable.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/param_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/param_map.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/param_map_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/param_map_view.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/param_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/param_vector.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/param_vector_view.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/param_vector_view.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/pch.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/pch.h -------------------------------------------------------------------------------- /test/old_tests/UnitTests/produce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/produce.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/produce_IPropertyValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/produce_IPropertyValue.h -------------------------------------------------------------------------------- /test/old_tests/UnitTests/produce_async.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/produce_async.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/produce_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/produce_map.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/produce_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/produce_vector.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/properties.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/range_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/range_for.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/reflect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/reflect.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/sdk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/sdk.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/single_threaded_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/single_threaded_map.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/single_threaded_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/single_threaded_vector.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/smart_pointers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/smart_pointers.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/streams.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/string_view_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/string_view_compare.h -------------------------------------------------------------------------------- /test/old_tests/UnitTests/struct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/struct.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/to_hstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/to_hstring.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/weak.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/weak.cpp -------------------------------------------------------------------------------- /test/old_tests/UnitTests/xaml_typename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/old_tests/UnitTests/xaml_typename.cpp -------------------------------------------------------------------------------- /test/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/test/GetMany.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/GetMany.cpp -------------------------------------------------------------------------------- /test/test/abi_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/abi_args.cpp -------------------------------------------------------------------------------- /test/test/abi_guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/abi_guard.cpp -------------------------------------------------------------------------------- /test/test/agile_ref.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/agile_ref.cpp -------------------------------------------------------------------------------- /test/test/agility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/agility.cpp -------------------------------------------------------------------------------- /test/test/async_auto_cancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_auto_cancel.cpp -------------------------------------------------------------------------------- /test/test/async_cancel_callback.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_cancel_callback.cpp -------------------------------------------------------------------------------- /test/test/async_check_cancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_check_cancel.cpp -------------------------------------------------------------------------------- /test/test/async_completed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_completed.cpp -------------------------------------------------------------------------------- /test/test/async_local.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_local.cpp -------------------------------------------------------------------------------- /test/test/async_no_suspend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_no_suspend.cpp -------------------------------------------------------------------------------- /test/test/async_progress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_progress.cpp -------------------------------------------------------------------------------- /test/test/async_propagate_cancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_propagate_cancel.cpp -------------------------------------------------------------------------------- /test/test/async_result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_result.cpp -------------------------------------------------------------------------------- /test/test/async_return.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_return.cpp -------------------------------------------------------------------------------- /test/test/async_suspend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_suspend.cpp -------------------------------------------------------------------------------- /test/test/async_throw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_throw.cpp -------------------------------------------------------------------------------- /test/test/async_wait_for.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/async_wait_for.cpp -------------------------------------------------------------------------------- /test/test/await_adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/await_adapter.cpp -------------------------------------------------------------------------------- /test/test/await_completed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/await_completed.cpp -------------------------------------------------------------------------------- /test/test/box_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/box_array.cpp -------------------------------------------------------------------------------- /test/test/box_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/box_delegate.cpp -------------------------------------------------------------------------------- /test/test/box_guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/box_guid.cpp -------------------------------------------------------------------------------- /test/test/capture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/capture.cpp -------------------------------------------------------------------------------- /test/test/cmd_reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/cmd_reader.cpp -------------------------------------------------------------------------------- /test/test/coro_foundation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/coro_foundation.cpp -------------------------------------------------------------------------------- /test/test/coro_system.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/coro_system.cpp -------------------------------------------------------------------------------- /test/test/coro_threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/coro_threadpool.cpp -------------------------------------------------------------------------------- /test/test/coro_ui_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/coro_ui_core.cpp -------------------------------------------------------------------------------- /test/test/custom_activation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/custom_activation.cpp -------------------------------------------------------------------------------- /test/test/custom_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/custom_error.cpp -------------------------------------------------------------------------------- /test/test/delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/delegate.cpp -------------------------------------------------------------------------------- /test/test/delegates.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/delegates.cpp -------------------------------------------------------------------------------- /test/test/disconnected.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/disconnected.cpp -------------------------------------------------------------------------------- /test/test/enum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/enum.cpp -------------------------------------------------------------------------------- /test/test/error_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/error_info.cpp -------------------------------------------------------------------------------- /test/test/event_clear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/event_clear.cpp -------------------------------------------------------------------------------- /test/test/event_deferral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/event_deferral.cpp -------------------------------------------------------------------------------- /test/test/fast_iterator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/fast_iterator.cpp -------------------------------------------------------------------------------- /test/test/final_release.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/final_release.cpp -------------------------------------------------------------------------------- /test/test/generic_type_names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/generic_type_names.cpp -------------------------------------------------------------------------------- /test/test/generic_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/generic_types.cpp -------------------------------------------------------------------------------- /test/test/generic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/generic_types.h -------------------------------------------------------------------------------- /test/test/get_activation_factory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/get_activation_factory.cpp -------------------------------------------------------------------------------- /test/test/guid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/guid.cpp -------------------------------------------------------------------------------- /test/test/guid_include.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/guid_include.cpp -------------------------------------------------------------------------------- /test/test/hresult_class_not_registered.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/hresult_class_not_registered.cpp -------------------------------------------------------------------------------- /test/test/hstring_empty.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/hstring_empty.cpp -------------------------------------------------------------------------------- /test/test/iid_ppv_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/iid_ppv_args.cpp -------------------------------------------------------------------------------- /test/test/in_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/in_params.cpp -------------------------------------------------------------------------------- /test/test/in_params_abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/in_params_abi.cpp -------------------------------------------------------------------------------- /test/test/initialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/initialize.cpp -------------------------------------------------------------------------------- /test/test/inspectable_interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/inspectable_interop.cpp -------------------------------------------------------------------------------- /test/test/interop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/interop.cpp -------------------------------------------------------------------------------- /test/test/invalid_events.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/invalid_events.cpp -------------------------------------------------------------------------------- /test/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/main.cpp -------------------------------------------------------------------------------- /test/test/memory_buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/memory_buffer.cpp -------------------------------------------------------------------------------- /test/test/missing_required_interfaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/missing_required_interfaces.cpp -------------------------------------------------------------------------------- /test/test/module_lock_dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/module_lock_dll.cpp -------------------------------------------------------------------------------- /test/test/multi_threaded_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/multi_threaded_common.h -------------------------------------------------------------------------------- /test/test/multi_threaded_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/multi_threaded_map.cpp -------------------------------------------------------------------------------- /test/test/multi_threaded_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/multi_threaded_vector.cpp -------------------------------------------------------------------------------- /test/test/names.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/names.cpp -------------------------------------------------------------------------------- /test/test/no_make_detection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/no_make_detection.cpp -------------------------------------------------------------------------------- /test/test/noexcept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/noexcept.cpp -------------------------------------------------------------------------------- /test/test/numerics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/numerics.cpp -------------------------------------------------------------------------------- /test/test/observable_index_of.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/observable_index_of.cpp -------------------------------------------------------------------------------- /test/test/optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/optional.cpp -------------------------------------------------------------------------------- /test/test/out_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/out_params.cpp -------------------------------------------------------------------------------- /test/test/out_params_abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/out_params_abi.cpp -------------------------------------------------------------------------------- /test/test/out_params_bad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/out_params_bad.cpp -------------------------------------------------------------------------------- /test/test/parent_includes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/parent_includes.cpp -------------------------------------------------------------------------------- /test/test/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/pch.h -------------------------------------------------------------------------------- /test/test/rational.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/rational.cpp -------------------------------------------------------------------------------- /test/test/return_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/return_params.cpp -------------------------------------------------------------------------------- /test/test/return_params_abi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/return_params_abi.cpp -------------------------------------------------------------------------------- /test/test/single_threaded_observable_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/single_threaded_observable_vector.cpp -------------------------------------------------------------------------------- /test/test/struct_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/struct_delegate.cpp -------------------------------------------------------------------------------- /test/test/structs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/structs.cpp -------------------------------------------------------------------------------- /test/test/suppress_error_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/suppress_error_info.cpp -------------------------------------------------------------------------------- /test/test/tearoff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/tearoff.cpp -------------------------------------------------------------------------------- /test/test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/test.vcxproj -------------------------------------------------------------------------------- /test/test/thread_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/thread_pool.cpp -------------------------------------------------------------------------------- /test/test/uniform_in_params.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/uniform_in_params.cpp -------------------------------------------------------------------------------- /test/test/variadic_delegate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/variadic_delegate.cpp -------------------------------------------------------------------------------- /test/test/velocity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/velocity.cpp -------------------------------------------------------------------------------- /test/test/when.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test/when.cpp -------------------------------------------------------------------------------- /test/test_component/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Class.cpp -------------------------------------------------------------------------------- /test/test_component/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Class.h -------------------------------------------------------------------------------- /test/test_component/Optional.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Optional.cpp -------------------------------------------------------------------------------- /test/test_component/Optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Optional.h -------------------------------------------------------------------------------- /test/test_component/OverloadClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/OverloadClass.cpp -------------------------------------------------------------------------------- /test/test_component/OverloadClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/OverloadClass.h -------------------------------------------------------------------------------- /test/test_component/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Simple.cpp -------------------------------------------------------------------------------- /test/test_component/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Simple.h -------------------------------------------------------------------------------- /test/test_component/Velocity.Class1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Velocity.Class1.cpp -------------------------------------------------------------------------------- /test/test_component/Velocity.Class1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Velocity.Class1.h -------------------------------------------------------------------------------- /test/test_component/Velocity.Class2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Velocity.Class2.cpp -------------------------------------------------------------------------------- /test/test_component/Velocity.Class2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Velocity.Class2.h -------------------------------------------------------------------------------- /test/test_component/Velocity.Class4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Velocity.Class4.cpp -------------------------------------------------------------------------------- /test/test_component/Velocity.Class4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Velocity.Class4.h -------------------------------------------------------------------------------- /test/test_component/Windows.Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Windows.Class.cpp -------------------------------------------------------------------------------- /test/test_component/Windows.Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/Windows.Class.h -------------------------------------------------------------------------------- /test/test_component/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/exports.def -------------------------------------------------------------------------------- /test/test_component/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/module.cpp -------------------------------------------------------------------------------- /test/test_component/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_component/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/pch.h -------------------------------------------------------------------------------- /test/test_component/test_auto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/test_auto.cpp -------------------------------------------------------------------------------- /test/test_component/test_component.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/test_component.idl -------------------------------------------------------------------------------- /test/test_component/test_component.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/test_component.vcxproj -------------------------------------------------------------------------------- /test/test_component/test_overload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component/test_overload.cpp -------------------------------------------------------------------------------- /test/test_component_base/HierarchyA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_base/HierarchyA.cpp -------------------------------------------------------------------------------- /test/test_component_base/HierarchyA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_base/HierarchyA.h -------------------------------------------------------------------------------- /test/test_component_base/HierarchyB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_base/HierarchyB.cpp -------------------------------------------------------------------------------- /test/test_component_base/HierarchyB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_base/HierarchyB.h -------------------------------------------------------------------------------- /test/test_component_base/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_base/exports.def -------------------------------------------------------------------------------- /test/test_component_base/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_component_base/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_base/pch.h -------------------------------------------------------------------------------- /test/test_component_base/test_component_base.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_base/test_component_base.idl -------------------------------------------------------------------------------- /test/test_component_base/test_component_base.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_base/test_component_base.vcxproj -------------------------------------------------------------------------------- /test/test_component_derived/Nested.HierarchyC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_derived/Nested.HierarchyC.cpp -------------------------------------------------------------------------------- /test/test_component_derived/Nested.HierarchyC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_derived/Nested.HierarchyC.h -------------------------------------------------------------------------------- /test/test_component_derived/Nested.HierarchyD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_derived/Nested.HierarchyD.cpp -------------------------------------------------------------------------------- /test/test_component_derived/Nested.HierarchyD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_derived/Nested.HierarchyD.h -------------------------------------------------------------------------------- /test/test_component_derived/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_derived/exports.def -------------------------------------------------------------------------------- /test/test_component_derived/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_component_derived/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_derived/pch.h -------------------------------------------------------------------------------- /test/test_component_derived/test_component_derived.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_derived/test_component_derived.idl -------------------------------------------------------------------------------- /test/test_component_derived/test_component_derived.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_derived/test_component_derived.vcxproj -------------------------------------------------------------------------------- /test/test_component_fast/Composition.CompositionObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Composition.CompositionObject.cpp -------------------------------------------------------------------------------- /test/test_component_fast/Composition.CompositionObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Composition.CompositionObject.h -------------------------------------------------------------------------------- /test/test_component_fast/Composition.Compositor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Composition.Compositor.cpp -------------------------------------------------------------------------------- /test/test_component_fast/Composition.Compositor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Composition.Compositor.h -------------------------------------------------------------------------------- /test/test_component_fast/Composition.SpriteVisual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Composition.SpriteVisual.cpp -------------------------------------------------------------------------------- /test/test_component_fast/Composition.SpriteVisual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Composition.SpriteVisual.h -------------------------------------------------------------------------------- /test/test_component_fast/Composition.Visual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Composition.Visual.cpp -------------------------------------------------------------------------------- /test/test_component_fast/Composition.Visual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Composition.Visual.h -------------------------------------------------------------------------------- /test/test_component_fast/Nomadic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Nomadic.cpp -------------------------------------------------------------------------------- /test/test_component_fast/Nomadic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Nomadic.h -------------------------------------------------------------------------------- /test/test_component_fast/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Simple.cpp -------------------------------------------------------------------------------- /test/test_component_fast/Simple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/Simple.h -------------------------------------------------------------------------------- /test/test_component_fast/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/exports.def -------------------------------------------------------------------------------- /test/test_component_fast/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_component_fast/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "winrt/fast_forward.h" 4 | -------------------------------------------------------------------------------- /test/test_component_fast/test_component_fast.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/test_component_fast.idl -------------------------------------------------------------------------------- /test/test_component_fast/test_component_fast.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_fast/test_component_fast.vcxproj -------------------------------------------------------------------------------- /test/test_component_folders/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_folders/Class.cpp -------------------------------------------------------------------------------- /test/test_component_folders/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_folders/Class.h -------------------------------------------------------------------------------- /test/test_component_folders/Nested.NestedClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_folders/Nested.NestedClass.cpp -------------------------------------------------------------------------------- /test/test_component_folders/Nested.NestedClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_folders/Nested.NestedClass.h -------------------------------------------------------------------------------- /test/test_component_folders/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_folders/exports.def -------------------------------------------------------------------------------- /test/test_component_folders/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_component_folders/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/test_component_folders/test_component_folders.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_folders/test_component_folders.idl -------------------------------------------------------------------------------- /test/test_component_folders/test_component_folders.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_folders/test_component_folders.vcxproj -------------------------------------------------------------------------------- /test/test_component_no_pch/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_no_pch/Class.cpp -------------------------------------------------------------------------------- /test/test_component_no_pch/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_no_pch/Class.h -------------------------------------------------------------------------------- /test/test_component_no_pch/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_no_pch/exports.def -------------------------------------------------------------------------------- /test/test_component_no_pch/test_component_no_pch.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_no_pch/test_component_no_pch.idl -------------------------------------------------------------------------------- /test/test_component_no_pch/test_component_no_pch.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_component_no_pch/test_component_no_pch.vcxproj -------------------------------------------------------------------------------- /test/test_cpp20/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/CMakeLists.txt -------------------------------------------------------------------------------- /test/test_cpp20/array_span.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/array_span.cpp -------------------------------------------------------------------------------- /test/test_cpp20/await_completed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/await_completed.cpp -------------------------------------------------------------------------------- /test/test_cpp20/clang_only.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/clang_only.cpp -------------------------------------------------------------------------------- /test/test_cpp20/custom_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/custom_error.cpp -------------------------------------------------------------------------------- /test/test_cpp20/format.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/format.cpp -------------------------------------------------------------------------------- /test/test_cpp20/hstring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/hstring.cpp -------------------------------------------------------------------------------- /test/test_cpp20/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/main.cpp -------------------------------------------------------------------------------- /test/test_cpp20/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_cpp20/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/pch.h -------------------------------------------------------------------------------- /test/test_cpp20/ranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/ranges.cpp -------------------------------------------------------------------------------- /test/test_cpp20/test_cpp20.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20/test_cpp20.vcxproj -------------------------------------------------------------------------------- /test/test_cpp20_no_sourcelocation/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20_no_sourcelocation/CMakeLists.txt -------------------------------------------------------------------------------- /test/test_cpp20_no_sourcelocation/custom_error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20_no_sourcelocation/custom_error.cpp -------------------------------------------------------------------------------- /test/test_cpp20_no_sourcelocation/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20_no_sourcelocation/main.cpp -------------------------------------------------------------------------------- /test/test_cpp20_no_sourcelocation/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_cpp20_no_sourcelocation/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20_no_sourcelocation/pch.h -------------------------------------------------------------------------------- /test/test_cpp20_no_sourcelocation/test_cpp20_no_sourcelocation.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_cpp20_no_sourcelocation/test_cpp20_no_sourcelocation.vcxproj -------------------------------------------------------------------------------- /test/test_fast/Composition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast/Composition.cpp -------------------------------------------------------------------------------- /test/test_fast/Nomadic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast/Nomadic.cpp -------------------------------------------------------------------------------- /test/test_fast/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast/Simple.cpp -------------------------------------------------------------------------------- /test/test_fast/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast/main.cpp -------------------------------------------------------------------------------- /test/test_fast/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_fast/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast/pch.h -------------------------------------------------------------------------------- /test/test_fast/test_fast.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast/test_fast.vcxproj -------------------------------------------------------------------------------- /test/test_fast_fwd/FastForwarderTest.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast_fwd/FastForwarderTest.idl -------------------------------------------------------------------------------- /test/test_fast_fwd/FastForwarderTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast_fwd/FastForwarderTests.cpp -------------------------------------------------------------------------------- /test/test_fast_fwd/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast_fwd/main.cpp -------------------------------------------------------------------------------- /test/test_fast_fwd/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_fast_fwd/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "catch.hpp" 4 | -------------------------------------------------------------------------------- /test/test_fast_fwd/test_fast_fwd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast_fwd/test_fast_fwd.vcxproj -------------------------------------------------------------------------------- /test/test_fast_fwd/test_fast_fwd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_fast_fwd/test_fast_fwd.vcxproj.filters -------------------------------------------------------------------------------- /test/test_module_lock_custom/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_module_lock_custom/main.cpp -------------------------------------------------------------------------------- /test/test_module_lock_custom/test_module_lock_custom.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_module_lock_custom/test_module_lock_custom.vcxproj -------------------------------------------------------------------------------- /test/test_module_lock_none/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_module_lock_none/main.cpp -------------------------------------------------------------------------------- /test/test_module_lock_none/test_module_lock_none.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_module_lock_none/test_module_lock_none.vcxproj -------------------------------------------------------------------------------- /test/test_slow/Composition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_slow/Composition.cpp -------------------------------------------------------------------------------- /test/test_slow/Simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_slow/Simple.cpp -------------------------------------------------------------------------------- /test/test_slow/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_slow/main.cpp -------------------------------------------------------------------------------- /test/test_slow/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /test/test_slow/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_slow/pch.h -------------------------------------------------------------------------------- /test/test_slow/test_slow.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/test/test_slow/test_slow.vcxproj -------------------------------------------------------------------------------- /vsix/Dev16/Component/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Dev16/Component/source.extension.vsixmanifest -------------------------------------------------------------------------------- /vsix/Dev16/Standalone/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Dev16/Standalone/source.extension.vsixmanifest -------------------------------------------------------------------------------- /vsix/Dev16/VSPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Dev16/VSPackage.cs -------------------------------------------------------------------------------- /vsix/Dev16/vsix.Dev16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Dev16/vsix.Dev16.csproj -------------------------------------------------------------------------------- /vsix/Dev17/Component/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Dev17/Component/source.extension.vsixmanifest -------------------------------------------------------------------------------- /vsix/Dev17/Standalone/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Dev17/Standalone/source.extension.vsixmanifest -------------------------------------------------------------------------------- /vsix/Dev17/VSPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Dev17/VSPackage.cs -------------------------------------------------------------------------------- /vsix/Dev17/vsix.Dev17.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Dev17/vsix.Dev17.csproj -------------------------------------------------------------------------------- /vsix/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Directory.Build.Props -------------------------------------------------------------------------------- /vsix/Extension.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Extension.targets -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankPage/BlankPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankPage/BlankPage.cpp -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankPage/BlankPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankPage/BlankPage.h -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankPage/BlankPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankPage/BlankPage.idl -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankPage/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankPage/BlankPage.xaml -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankPage/cppwinrt_BlankPage.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankPage/cppwinrt_BlankPage.vstemplate -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankUserControl/BlankUserControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankUserControl/BlankUserControl.cpp -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankUserControl/BlankUserControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankUserControl/BlankUserControl.h -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankUserControl/BlankUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankUserControl/BlankUserControl.idl -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankUserControl/BlankUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankUserControl/BlankUserControl.xaml -------------------------------------------------------------------------------- /vsix/ItemTemplates/BlankUserControl/cppwinrt_BlankUserControl.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/BlankUserControl/cppwinrt_BlankUserControl.vstemplate -------------------------------------------------------------------------------- /vsix/ItemTemplates/VSTemplateDir.vstman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/VSTemplateDir.vstman -------------------------------------------------------------------------------- /vsix/ItemTemplates/ViewModel/ViewModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/ViewModel/ViewModel.cpp -------------------------------------------------------------------------------- /vsix/ItemTemplates/ViewModel/ViewModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/ViewModel/ViewModel.h -------------------------------------------------------------------------------- /vsix/ItemTemplates/ViewModel/ViewModel.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/ViewModel/ViewModel.idl -------------------------------------------------------------------------------- /vsix/ItemTemplates/ViewModel/cppwinrt_ViewModel.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ItemTemplates/ViewModel/cppwinrt_ViewModel.vstemplate -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/ConsoleApplication.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/ConsoleApplication.vcxproj -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/ConsoleApplication.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/ConsoleApplication.vcxproj.filters -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/PropertySheet.props -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/cppwinrt_ConsoleApplication.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/cppwinrt_ConsoleApplication.vstemplate -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/main.cpp -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/pch.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/ConsoleApplication/readme.txt -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/PropertySheet.props -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.exe.manifest -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.rc -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.vcxproj -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/WindowsApplication.vcxproj.filters -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/cppwinrt_WindowsApplication.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/cppwinrt_WindowsApplication.vstemplate -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/pch.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/readme.txt -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/resource.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/winmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Desktop/WindowsApplication/winmain.cpp -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/App.cpp -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/App.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/App.idl: -------------------------------------------------------------------------------- 1 | namespace $safeprojectname$ 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/App.xaml -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/BlankApp.vcxproj.filters -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/MainPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/MainPage.cpp -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/MainPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/MainPage.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/MainPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/MainPage.idl -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/MainPage.xaml -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Package.appxmanifest -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/PropertySheet.props -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/StoreLogo.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/cppwinrt_BlankApp.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/cppwinrt_BlankApp.vstemplate -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/pch.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/BlankApp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/BlankApp/readme.txt -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/App.cpp -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/CoreApp.vcxproj.filters -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Package.appxmanifest -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/PropertySheet.props -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/StoreLogo.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/cppwinrt_CoreApp.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/cppwinrt_CoreApp.vstemplate -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/pch.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/CoreApp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/CoreApp/readme.txt -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/Class.cpp -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/Class.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/Class.idl -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/PropertySheet.props -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/StaticLibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/StaticLibrary.vcxproj -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/StaticLibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/StaticLibrary.vcxproj.filters -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/cppwinrt_StaticLibrary.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/cppwinrt_StaticLibrary.vstemplate -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/pch.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/StaticLibrary/readme.txt -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/Class.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/Class.cpp -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/Class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/Class.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/Class.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/Class.idl -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/PropertySheet.props -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.def -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/WindowsRuntimeComponent.vcxproj.filters -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/cppwinrt_WindowsRuntimeComponent.vstemplate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/cppwinrt_WindowsRuntimeComponent.vstemplate -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/pch.h -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VC/Windows Universal/WindowsRuntimeComponent/readme.txt -------------------------------------------------------------------------------- /vsix/ProjectTemplates/VSTemplateDir.vstman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/ProjectTemplates/VSTemplateDir.vstman -------------------------------------------------------------------------------- /vsix/Resources/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/VSPackage.resx -------------------------------------------------------------------------------- /vsix/Resources/cs-CZ/VSPackage.cs-CZ.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/cs-CZ/VSPackage.cs-CZ.resx -------------------------------------------------------------------------------- /vsix/Resources/de-DE/VSPackage.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/de-DE/VSPackage.de-DE.resx -------------------------------------------------------------------------------- /vsix/Resources/es-ES/VSPackage.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/es-ES/VSPackage.es-ES.resx -------------------------------------------------------------------------------- /vsix/Resources/fr-FR/VSPackage.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/fr-FR/VSPackage.fr-FR.resx -------------------------------------------------------------------------------- /vsix/Resources/it-IT/VSPackage.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/it-IT/VSPackage.it-IT.resx -------------------------------------------------------------------------------- /vsix/Resources/ja-JP/VSPackage.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/ja-JP/VSPackage.ja-JP.resx -------------------------------------------------------------------------------- /vsix/Resources/ko-KR/VSPackage.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/ko-KR/VSPackage.ko-KR.resx -------------------------------------------------------------------------------- /vsix/Resources/pl-PL/VSPackage.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/pl-PL/VSPackage.pl-PL.resx -------------------------------------------------------------------------------- /vsix/Resources/pt-BR/VSPackage.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/pt-BR/VSPackage.pt-BR.resx -------------------------------------------------------------------------------- /vsix/Resources/ru-RU/VSPackage.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/ru-RU/VSPackage.ru-RU.resx -------------------------------------------------------------------------------- /vsix/Resources/tr-TR/VSPackage.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/tr-TR/VSPackage.tr-TR.resx -------------------------------------------------------------------------------- /vsix/Resources/zh-CN/VSPackage.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/zh-CN/VSPackage.zh-CN.resx -------------------------------------------------------------------------------- /vsix/Resources/zh-TW/VSPackage.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/Resources/zh-TW/VSPackage.zh-TW.resx -------------------------------------------------------------------------------- /vsix/SignConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/SignConfig.xml -------------------------------------------------------------------------------- /vsix/cppwinrt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/cppwinrt.ico -------------------------------------------------------------------------------- /vsix/cppwinrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/cppwinrt.png -------------------------------------------------------------------------------- /vsix/cppwinrt.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/cppwinrt.xcf -------------------------------------------------------------------------------- /vsix/extension.manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/extension.manifest.json -------------------------------------------------------------------------------- /vsix/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/overview.md -------------------------------------------------------------------------------- /vsix/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/readme.md -------------------------------------------------------------------------------- /vsix/vsix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/cppwinrt/HEAD/vsix/vsix.sln --------------------------------------------------------------------------------