Sun, 25 Jan 2026 10:28:37 +0100
change return type of ui_list_getselection from UiListSelection to int, add ui_list_get_selection for returning UiListSelection
// Copyright (c) Microsoft Corporation and Contributors. // Licensed under the MIT License. #pragma once #include "App.xaml.g.h" namespace winrt::winui::implementation { struct App : AppT<App> { App(); void OnLaunched(Microsoft::UI::Xaml::LaunchActivatedEventArgs const&); private: winrt::Microsoft::UI::Xaml::Window window{ nullptr }; }; }