/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/previewpane/UnitTests-PreviewHandlerCommon/NativeMethods.cs
16 строк
560 B
Aaron Junker
[Docs]Replace docs.micrososft.com with learn.microsoft.com (#20662)
28 сен 2022, 19:18
Не верифицирован
28 сен 2022, 19:18
4e202e4
Код
Авторство
О чём код?
// 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; namespace PreviewHandlerCommonUnitTests { public static class NativeMethods { // Gets the ancestor window: https://learn.microsoft.com/windows/win32/api/winuser/nf-winuser-getancestor [DllImport("user32.dll")] internal static extern IntPtr GetAncestor(IntPtr hWnd, uint gaFlags); } }