pub unsafe fn GetTokenInformation<P0>(
    tokenhandle: P0,
    tokeninformationclass: TOKEN_INFORMATION_CLASS,
    tokeninformation: Option<*mut c_void>,
    tokeninformationlength: u32,
    returnlength: *mut u32
) -> Result<()>
where P0: IntoParam<HANDLE>,