mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-13 00:01:45 +08:00
22 lines
770 B
C#
22 lines
770 B
C#
|
// Copyright (c) Microsoft Corporation
|
|||
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|||
|
// See the LICENSE file in the project root for more information.
|
|||
|
|
|||
|
using System;
|
|||
|
using System.Runtime.InteropServices;
|
|||
|
using static Microsoft.Plugin.Program.Programs.UWP;
|
|||
|
|
|||
|
namespace Microsoft.Plugin.Program.Programs
|
|||
|
{
|
|||
|
[Guid("5DA89BF4-3773-46BE-B650-7E744863B7E8")]
|
|||
|
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
|
|||
|
public interface IAppxManifestApplication
|
|||
|
{
|
|||
|
[PreserveSig]
|
|||
|
Hresult GetStringValue([MarshalAs(UnmanagedType.LPWStr)] string name, [MarshalAs(UnmanagedType.LPWStr)] out string value);
|
|||
|
|
|||
|
[PreserveSig]
|
|||
|
Hresult GetAppUserModelId([MarshalAs(UnmanagedType.LPWStr)] out string value);
|
|||
|
}
|
|||
|
}
|