/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/Interop/Windows/CloseHandle.cs
16 строк
402 B
Jordan Borean
Fix Start-Process -Wait with -Credential (#19096)
06 мар 2023, 21:31
Не верифицирован
06 мар 2023, 21:31
efc7385
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #nullable enable using System.Runtime.InteropServices; internal static partial class Interop { internal static partial class Windows { [LibraryImport("api-ms-win-core-handle-l1-1-0.dll")] [return: MarshalAs(UnmanagedType.Bool)] internal static partial bool CloseHandle(nint hObject); } }