]> git.proxmox.com Git - rustc.git/blame - vendor/winapi/src/um/jobapi.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / vendor / winapi / src / um / jobapi.rs
CommitLineData
ff7c6d11
XL
1// Licensed under the Apache License, Version 2.0
2// <LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
3// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
4// All files in the project carrying such notice may not be copied, modified, or distributed
5// except according to those terms.
6use shared::minwindef::{BOOL, PBOOL};
7use um::winnt::HANDLE;
8extern "system" {
9 pub fn IsProcessInJob(
10 ProcessHandle: HANDLE,
11 JobHandle: HANDLE,
12 Result: PBOOL,
13 ) -> BOOL;
14}