/
githubmirror
/
PowerShell
Обзор
Документация
Войти
/
githubmirror
/
PowerShell
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/System.Management.Automation/engine/Interop/Windows/NetApiBufferFree.cs
16 строк
345 B
xtqqczze
Fix memory leak in `GetFileShares` (#25896)
07 окт 2025, 12:28
Не верифицирован
07 окт 2025, 12:28
60d4bc3
Код
Авторство
О чём код?
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. #nullable enable using System.Runtime.InteropServices; internal static partial class Interop { internal static unsafe partial class Windows { [LibraryImport("Netapi32.dll")] internal static partial uint NetApiBufferFree(nint Buffer); } }