/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/ShortcutGuide/ShortcutGuide.Ui/TasklistButton.cs
27 строк
633 B
Noraa Junker
Shortcut Guide V2 (#40834)
21 май 2026, 18:27
Не верифицирован
21 май 2026, 18:27
9699d8a
Код
Авторство
О чём код?
// 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.Runtime.InteropServices; namespace ShortcutGuide; internal static partial class NativeMethods { [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] public struct TasklistButton { [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 256)] public string Name; public int X; public int Y; public int Width; public int Height; public int Keynum; } }