Fixes for taskbar app

This commit is contained in:
2026-01-24 06:55:59 +00:00
parent f1e3630d1b
commit 675673f026
5 changed files with 68 additions and 0 deletions

13
Interop/XClassHint.cs Normal file
View File

@@ -0,0 +1,13 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
namespace Microsoft.Maui.Platform.Linux.Interop;
[StructLayout(LayoutKind.Sequential)]
public struct XClassHint
{
public IntPtr res_name;
public IntPtr res_class;
}