#[inline(always)] pub const fn get_current_process_token() -> crate::token::PsuedoHandle<'static> { unsafe { crate::token::PsuedoHandle::from_raw_const(-4) } }
#[inline(always)] pub const fn get_current_thread_token() -> crate::token::PsuedoHandle<'static> { unsafe { crate::token::PsuedoHandle::from_raw_const(-5) } }
#[inline(always)] pub const fn get_current_thread_effective_token() -> crate::token::PsuedoHandle<'static> { unsafe { crate::token::PsuedoHandle::from_raw_const(-6) } }
#[cfg(std)] #[test] fn debug() {
use std::dbg;
dbg!(dbg!(get_current_process_token()).clone());
dbg!(dbg!(get_current_thread_token()).clone());
dbg!(dbg!(get_current_thread_effective_token()).clone());
}