dmband: Rewrite band track DBMT chunk parsing.
[wine.git] / include / windows.applicationmodel.core.idl
blob7a4ea85c642ec72c7f47104df2c7ee044dbe59be
1 /*
2 * Copyright 2023 RĂ©mi Bernon for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 #ifdef __WIDL__
20 #pragma winrt ns_prefix
21 #endif
23 #ifndef DO_NO_IMPORTS
24 import "windows.foundation.idl";
25 import "windows.storage.idl";
26 import "windows.system.idl";
27 import "windows.applicationmodel.idl";
28 #endif
30 namespace Windows.ApplicationModel {
31 runtimeclass AppDisplayInfo;
34 namespace Windows.ApplicationModel.Core {
35 interface IAppListEntry;
37 runtimeclass AppListEntry;
40 contract(Windows.Foundation.UniversalApiContract, 1.0),
41 exclusiveto(Windows.ApplicationModel.Core.AppListEntry),
42 uuid(ef00f07f-2108-490a-877a-8a9f17c25fad)
44 interface IAppListEntry : IInspectable
46 [propget] HRESULT DisplayInfo([out, retval] Windows.ApplicationModel.AppDisplayInfo **value);
47 HRESULT LaunchAsync([out, retval] Windows.Foundation.IAsyncOperation<boolean> **operation);
51 contract(Windows.Foundation.UniversalApiContract, 1.0),
52 marshaling_behavior(agile),
53 threading(both)
55 runtimeclass AppListEntry
57 [default] interface Windows.ApplicationModel.Core.IAppListEntry;
58 [contract(Windows.Foundation.UniversalApiContract, 5.0)] interface Windows.ApplicationModel.Core.IAppListEntry2;
59 [contract(Windows.Foundation.UniversalApiContract, 6.0)] interface Windows.ApplicationModel.Core.IAppListEntry3;
60 [contract(Windows.Foundation.UniversalApiContract, 11.0)] interface Windows.ApplicationModel.Core.IAppListEntry4;