node_sys/interface/
os_constants_priority.rs1use wasm_bindgen::prelude::*;
2
3#[wasm_bindgen]
4extern {
5 pub type OsConstantsPriority;
6
7 #[wasm_bindgen(method, getter)]
8 pub fn PRIORITY_LOW(this: &OsConstantsPriority) -> i32;
9
10 #[wasm_bindgen(method, getter)]
11 pub fn PRIORITY_BELOW_NORMAL(this: &OsConstantsPriority) -> i32;
12
13 #[wasm_bindgen(method, getter)]
14 pub fn PRIORITY_NORMAL(this: &OsConstantsPriority) -> i32;
15
16 #[wasm_bindgen(method, getter)]
17 pub fn PRIORITY_ABOVE_NORMAL(this: &OsConstantsPriority) -> i32;
18
19 #[wasm_bindgen(method, getter)]
20 pub fn PRIORITY_HIGH(this: &OsConstantsPriority) -> i32;
21
22 #[wasm_bindgen(method, getter)]
23 pub fn PRIORITY_HIGHEST(this: &OsConstantsPriority) -> i32;
24}