Windows-powershell / PowerShell-master /src /System.Management.Automation /engine /Interop /Windows /AssignProcessToJobObject.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| using System.Runtime.InteropServices; | |
| using Microsoft.Win32.SafeHandles; | |
| internal static partial class Interop | |
| { | |
| internal static partial class Windows | |
| { | |
| [] | |
| [] | |
| internal static partial bool AssignProcessToJobObject( | |
| SafeJobHandle hJob, | |
| SafeProcessHandle hProcess); | |
| } | |
| } | |