| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn ProcessIdToSessionId(dwprocessid: u32, psessionid: *mut u32) -> super::super::Foundation::BOOL { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn ProcessIdToSessionId(dwprocessid: u32, psessionid: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| ProcessIdToSessionId(dwprocessid, ::core::mem::transmute(psessionid)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSCloseServer<'a, P0>(hserver: P0) |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSCloseServer(hserver: super::super::Foundation::HANDLE); |
| } |
| WTSCloseServer(hserver.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSConnectSessionA<'a, P0, P1>(logonid: u32, targetlogonid: u32, ppassword: P0, bwait: P1) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSConnectSessionA(logonid: u32, targetlogonid: u32, ppassword: ::windows::core::PCSTR, bwait: super::super::Foundation::BOOL) -> super::super::Foundation::BOOL; |
| } |
| WTSConnectSessionA(logonid, targetlogonid, ppassword.into(), bwait.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSConnectSessionW<'a, P0, P1>(logonid: u32, targetlogonid: u32, ppassword: P0, bwait: P1) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSConnectSessionW(logonid: u32, targetlogonid: u32, ppassword: ::windows::core::PCWSTR, bwait: super::super::Foundation::BOOL) -> super::super::Foundation::BOOL; |
| } |
| WTSConnectSessionW(logonid, targetlogonid, ppassword.into(), bwait.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSCreateListenerA<'a, P0, P1>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: P1, pbuffer: *const WTSLISTENERCONFIGA, flag: u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSCreateListenerA(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: ::windows::core::PCSTR, pbuffer: *const WTSLISTENERCONFIGA, flag: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSCreateListenerA(hserver.into(), ::core::mem::transmute(preserved), reserved, plistenername.into(), ::core::mem::transmute(pbuffer), flag) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSCreateListenerW<'a, P0, P1>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: P1, pbuffer: *const WTSLISTENERCONFIGW, flag: u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSCreateListenerW(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: ::windows::core::PCWSTR, pbuffer: *const WTSLISTENERCONFIGW, flag: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSCreateListenerW(hserver.into(), ::core::mem::transmute(preserved), reserved, plistenername.into(), ::core::mem::transmute(pbuffer), flag) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSDisconnectSession<'a, P0, P1>(hserver: P0, sessionid: u32, bwait: P1) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSDisconnectSession(hserver: super::super::Foundation::HANDLE, sessionid: u32, bwait: super::super::Foundation::BOOL) -> super::super::Foundation::BOOL; |
| } |
| WTSDisconnectSession(hserver.into(), sessionid, bwait.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnableChildSessions<'a, P0>(benable: P0) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnableChildSessions(benable: super::super::Foundation::BOOL) -> super::super::Foundation::BOOL; |
| } |
| WTSEnableChildSessions(benable.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateListenersA<'a, P0>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plisteners: ::core::option::Option<*mut *mut i8>, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateListenersA(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plisteners: *mut *mut i8, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateListenersA(hserver.into(), ::core::mem::transmute(preserved), reserved, ::core::mem::transmute(plisteners.unwrap_or(::std::ptr::null_mut())), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateListenersW<'a, P0>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plisteners: ::core::option::Option<*mut *mut u16>, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateListenersW(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plisteners: *mut *mut u16, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateListenersW(hserver.into(), ::core::mem::transmute(preserved), reserved, ::core::mem::transmute(plisteners.unwrap_or(::std::ptr::null_mut())), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateProcessesA<'a, P0>(hserver: P0, reserved: u32, version: u32, ppprocessinfo: *mut *mut WTS_PROCESS_INFOA, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateProcessesA(hserver: super::super::Foundation::HANDLE, reserved: u32, version: u32, ppprocessinfo: *mut *mut WTS_PROCESS_INFOA, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateProcessesA(hserver.into(), reserved, version, ::core::mem::transmute(ppprocessinfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateProcessesExA<'a, P0>(hserver: P0, plevel: *mut u32, sessionid: u32, ppprocessinfo: *mut ::windows::core::PSTR, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateProcessesExA(hserver: super::super::Foundation::HANDLE, plevel: *mut u32, sessionid: u32, ppprocessinfo: *mut ::windows::core::PSTR, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateProcessesExA(hserver.into(), ::core::mem::transmute(plevel), sessionid, ::core::mem::transmute(ppprocessinfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateProcessesExW<'a, P0>(hserver: P0, plevel: *mut u32, sessionid: u32, ppprocessinfo: *mut ::windows::core::PWSTR, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateProcessesExW(hserver: super::super::Foundation::HANDLE, plevel: *mut u32, sessionid: u32, ppprocessinfo: *mut ::windows::core::PWSTR, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateProcessesExW(hserver.into(), ::core::mem::transmute(plevel), sessionid, ::core::mem::transmute(ppprocessinfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateProcessesW<'a, P0>(hserver: P0, reserved: u32, version: u32, ppprocessinfo: *mut *mut WTS_PROCESS_INFOW, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateProcessesW(hserver: super::super::Foundation::HANDLE, reserved: u32, version: u32, ppprocessinfo: *mut *mut WTS_PROCESS_INFOW, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateProcessesW(hserver.into(), reserved, version, ::core::mem::transmute(ppprocessinfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateServersA<'a, P0>(pdomainname: P0, reserved: u32, version: u32, ppserverinfo: *mut *mut WTS_SERVER_INFOA, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateServersA(pdomainname: ::windows::core::PCSTR, reserved: u32, version: u32, ppserverinfo: *mut *mut WTS_SERVER_INFOA, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateServersA(pdomainname.into(), reserved, version, ::core::mem::transmute(ppserverinfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateServersW<'a, P0>(pdomainname: P0, reserved: u32, version: u32, ppserverinfo: *mut *mut WTS_SERVER_INFOW, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateServersW(pdomainname: ::windows::core::PCWSTR, reserved: u32, version: u32, ppserverinfo: *mut *mut WTS_SERVER_INFOW, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateServersW(pdomainname.into(), reserved, version, ::core::mem::transmute(ppserverinfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateSessionsA<'a, P0>(hserver: P0, reserved: u32, version: u32, ppsessioninfo: *mut *mut WTS_SESSION_INFOA, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateSessionsA(hserver: super::super::Foundation::HANDLE, reserved: u32, version: u32, ppsessioninfo: *mut *mut WTS_SESSION_INFOA, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateSessionsA(hserver.into(), reserved, version, ::core::mem::transmute(ppsessioninfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateSessionsExA<'a, P0>(hserver: P0, plevel: *mut u32, filter: u32, ppsessioninfo: *mut *mut WTS_SESSION_INFO_1A, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateSessionsExA(hserver: super::super::Foundation::HANDLE, plevel: *mut u32, filter: u32, ppsessioninfo: *mut *mut WTS_SESSION_INFO_1A, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateSessionsExA(hserver.into(), ::core::mem::transmute(plevel), filter, ::core::mem::transmute(ppsessioninfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateSessionsExW<'a, P0>(hserver: P0, plevel: *mut u32, filter: u32, ppsessioninfo: *mut *mut WTS_SESSION_INFO_1W, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateSessionsExW(hserver: super::super::Foundation::HANDLE, plevel: *mut u32, filter: u32, ppsessioninfo: *mut *mut WTS_SESSION_INFO_1W, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateSessionsExW(hserver.into(), ::core::mem::transmute(plevel), filter, ::core::mem::transmute(ppsessioninfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSEnumerateSessionsW<'a, P0>(hserver: P0, reserved: u32, version: u32, ppsessioninfo: *mut *mut WTS_SESSION_INFOW, pcount: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSEnumerateSessionsW(hserver: super::super::Foundation::HANDLE, reserved: u32, version: u32, ppsessioninfo: *mut *mut WTS_SESSION_INFOW, pcount: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSEnumerateSessionsW(hserver.into(), reserved, version, ::core::mem::transmute(ppsessioninfo), ::core::mem::transmute(pcount)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[inline] |
| pub unsafe fn WTSFreeMemory(pmemory: *mut ::core::ffi::c_void) { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSFreeMemory(pmemory: *mut ::core::ffi::c_void); |
| } |
| WTSFreeMemory(::core::mem::transmute(pmemory)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSFreeMemoryExA(wtstypeclass: WTS_TYPE_CLASS, pmemory: *const ::core::ffi::c_void, numberofentries: u32) -> super::super::Foundation::BOOL { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSFreeMemoryExA(wtstypeclass: WTS_TYPE_CLASS, pmemory: *const ::core::ffi::c_void, numberofentries: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSFreeMemoryExA(wtstypeclass, ::core::mem::transmute(pmemory), numberofentries) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSFreeMemoryExW(wtstypeclass: WTS_TYPE_CLASS, pmemory: *const ::core::ffi::c_void, numberofentries: u32) -> super::super::Foundation::BOOL { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSFreeMemoryExW(wtstypeclass: WTS_TYPE_CLASS, pmemory: *const ::core::ffi::c_void, numberofentries: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSFreeMemoryExW(wtstypeclass, ::core::mem::transmute(pmemory), numberofentries) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[inline] |
| pub unsafe fn WTSGetActiveConsoleSessionId() -> u32 { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSGetActiveConsoleSessionId() -> u32; |
| } |
| WTSGetActiveConsoleSessionId() |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSGetChildSessionId(psessionid: *mut u32) -> super::super::Foundation::BOOL { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSGetChildSessionId(psessionid: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSGetChildSessionId(::core::mem::transmute(psessionid)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`, `\"Win32_Security\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_Security"))] |
| #[inline] |
| pub unsafe fn WTSGetListenerSecurityA<'a, P0, P1>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: P1, securityinformation: u32, psecuritydescriptor: super::super::Security::PSECURITY_DESCRIPTOR, nlength: u32, lpnlengthneeded: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSGetListenerSecurityA(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: ::windows::core::PCSTR, securityinformation: u32, psecuritydescriptor: super::super::Security::PSECURITY_DESCRIPTOR, nlength: u32, lpnlengthneeded: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSGetListenerSecurityA(hserver.into(), ::core::mem::transmute(preserved), reserved, plistenername.into(), securityinformation, ::core::mem::transmute(psecuritydescriptor), nlength, ::core::mem::transmute(lpnlengthneeded)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`, `\"Win32_Security\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_Security"))] |
| #[inline] |
| pub unsafe fn WTSGetListenerSecurityW<'a, P0, P1>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: P1, securityinformation: u32, psecuritydescriptor: super::super::Security::PSECURITY_DESCRIPTOR, nlength: u32, lpnlengthneeded: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSGetListenerSecurityW(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: ::windows::core::PCWSTR, securityinformation: u32, psecuritydescriptor: super::super::Security::PSECURITY_DESCRIPTOR, nlength: u32, lpnlengthneeded: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSGetListenerSecurityW(hserver.into(), ::core::mem::transmute(preserved), reserved, plistenername.into(), securityinformation, ::core::mem::transmute(psecuritydescriptor), nlength, ::core::mem::transmute(lpnlengthneeded)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSIsChildSessionsEnabled(pbenabled: *mut super::super::Foundation::BOOL) -> super::super::Foundation::BOOL { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSIsChildSessionsEnabled(pbenabled: *mut super::super::Foundation::BOOL) -> super::super::Foundation::BOOL; |
| } |
| WTSIsChildSessionsEnabled(::core::mem::transmute(pbenabled)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSLogoffSession<'a, P0, P1>(hserver: P0, sessionid: u32, bwait: P1) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSLogoffSession(hserver: super::super::Foundation::HANDLE, sessionid: u32, bwait: super::super::Foundation::BOOL) -> super::super::Foundation::BOOL; |
| } |
| WTSLogoffSession(hserver.into(), sessionid, bwait.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSOpenServerA<'a, P0>(pservername: P0) -> super::super::Foundation::HANDLE |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSOpenServerA(pservername: ::windows::core::PCSTR) -> super::super::Foundation::HANDLE; |
| } |
| WTSOpenServerA(pservername.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSOpenServerExA<'a, P0>(pservername: P0) -> super::super::Foundation::HANDLE |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSOpenServerExA(pservername: ::windows::core::PCSTR) -> super::super::Foundation::HANDLE; |
| } |
| WTSOpenServerExA(pservername.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSOpenServerExW<'a, P0>(pservername: P0) -> super::super::Foundation::HANDLE |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSOpenServerExW(pservername: ::windows::core::PCWSTR) -> super::super::Foundation::HANDLE; |
| } |
| WTSOpenServerExW(pservername.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSOpenServerW<'a, P0>(pservername: P0) -> super::super::Foundation::HANDLE |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSOpenServerW(pservername: ::windows::core::PCWSTR) -> super::super::Foundation::HANDLE; |
| } |
| WTSOpenServerW(pservername.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSQueryListenerConfigA<'a, P0, P1>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: P1, pbuffer: *mut WTSLISTENERCONFIGA) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSQueryListenerConfigA(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: ::windows::core::PCSTR, pbuffer: *mut WTSLISTENERCONFIGA) -> super::super::Foundation::BOOL; |
| } |
| WTSQueryListenerConfigA(hserver.into(), ::core::mem::transmute(preserved), reserved, plistenername.into(), ::core::mem::transmute(pbuffer)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSQueryListenerConfigW<'a, P0, P1>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: P1, pbuffer: *mut WTSLISTENERCONFIGW) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSQueryListenerConfigW(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: ::windows::core::PCWSTR, pbuffer: *mut WTSLISTENERCONFIGW) -> super::super::Foundation::BOOL; |
| } |
| WTSQueryListenerConfigW(hserver.into(), ::core::mem::transmute(preserved), reserved, plistenername.into(), ::core::mem::transmute(pbuffer)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSQuerySessionInformationA<'a, P0>(hserver: P0, sessionid: u32, wtsinfoclass: WTS_INFO_CLASS, ppbuffer: *mut ::windows::core::PSTR, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSQuerySessionInformationA(hserver: super::super::Foundation::HANDLE, sessionid: u32, wtsinfoclass: WTS_INFO_CLASS, ppbuffer: *mut ::windows::core::PSTR, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSQuerySessionInformationA(hserver.into(), sessionid, wtsinfoclass, ::core::mem::transmute(ppbuffer), ::core::mem::transmute(pbytesreturned)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSQuerySessionInformationW<'a, P0>(hserver: P0, sessionid: u32, wtsinfoclass: WTS_INFO_CLASS, ppbuffer: *mut ::windows::core::PWSTR, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSQuerySessionInformationW(hserver: super::super::Foundation::HANDLE, sessionid: u32, wtsinfoclass: WTS_INFO_CLASS, ppbuffer: *mut ::windows::core::PWSTR, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSQuerySessionInformationW(hserver.into(), sessionid, wtsinfoclass, ::core::mem::transmute(ppbuffer), ::core::mem::transmute(pbytesreturned)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSQueryUserConfigA<'a, P0, P1>(pservername: P0, pusername: P1, wtsconfigclass: WTS_CONFIG_CLASS, ppbuffer: *mut ::windows::core::PSTR, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| P1: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSQueryUserConfigA(pservername: ::windows::core::PCSTR, pusername: ::windows::core::PCSTR, wtsconfigclass: WTS_CONFIG_CLASS, ppbuffer: *mut ::windows::core::PSTR, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSQueryUserConfigA(pservername.into(), pusername.into(), wtsconfigclass, ::core::mem::transmute(ppbuffer), ::core::mem::transmute(pbytesreturned)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSQueryUserConfigW<'a, P0, P1>(pservername: P0, pusername: P1, wtsconfigclass: WTS_CONFIG_CLASS, ppbuffer: *mut ::windows::core::PWSTR, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSQueryUserConfigW(pservername: ::windows::core::PCWSTR, pusername: ::windows::core::PCWSTR, wtsconfigclass: WTS_CONFIG_CLASS, ppbuffer: *mut ::windows::core::PWSTR, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSQueryUserConfigW(pservername.into(), pusername.into(), wtsconfigclass, ::core::mem::transmute(ppbuffer), ::core::mem::transmute(pbytesreturned)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSQueryUserToken(sessionid: u32, phtoken: *mut super::super::Foundation::HANDLE) -> super::super::Foundation::BOOL { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSQueryUserToken(sessionid: u32, phtoken: *mut super::super::Foundation::HANDLE) -> super::super::Foundation::BOOL; |
| } |
| WTSQueryUserToken(sessionid, ::core::mem::transmute(phtoken)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSRegisterSessionNotification<'a, P0>(hwnd: P0, dwflags: u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HWND>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSRegisterSessionNotification(hwnd: super::super::Foundation::HWND, dwflags: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSRegisterSessionNotification(hwnd.into(), dwflags) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSRegisterSessionNotificationEx<'a, P0, P1>(hserver: P0, hwnd: P1, dwflags: u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<super::super::Foundation::HWND>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSRegisterSessionNotificationEx(hserver: super::super::Foundation::HANDLE, hwnd: super::super::Foundation::HWND, dwflags: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSRegisterSessionNotificationEx(hserver.into(), hwnd.into(), dwflags) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`, `\"Win32_UI_WindowsAndMessaging\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_UI_WindowsAndMessaging"))] |
| #[inline] |
| pub unsafe fn WTSSendMessageA<'a, P0, P1>(hserver: P0, sessionid: u32, ptitle: &[u8], pmessage: &[u8], style: super::super::UI::WindowsAndMessaging::MESSAGEBOX_STYLE, timeout: u32, presponse: *mut super::super::UI::WindowsAndMessaging::MESSAGEBOX_RESULT, bwait: P1) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSSendMessageA(hserver: super::super::Foundation::HANDLE, sessionid: u32, ptitle: ::windows::core::PCSTR, titlelength: u32, pmessage: ::windows::core::PCSTR, messagelength: u32, style: super::super::UI::WindowsAndMessaging::MESSAGEBOX_STYLE, timeout: u32, presponse: *mut super::super::UI::WindowsAndMessaging::MESSAGEBOX_RESULT, bwait: super::super::Foundation::BOOL) -> super::super::Foundation::BOOL; |
| } |
| WTSSendMessageA(hserver.into(), sessionid, ::core::mem::transmute(ptitle.as_ptr()), ptitle.len() as _, ::core::mem::transmute(pmessage.as_ptr()), pmessage.len() as _, style, timeout, ::core::mem::transmute(presponse), bwait.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`, `\"Win32_UI_WindowsAndMessaging\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_UI_WindowsAndMessaging"))] |
| #[inline] |
| pub unsafe fn WTSSendMessageW<'a, P0, P1, P2, P3>(hserver: P0, sessionid: u32, ptitle: P1, titlelength: u32, pmessage: P2, messagelength: u32, style: super::super::UI::WindowsAndMessaging::MESSAGEBOX_STYLE, timeout: u32, presponse: *mut super::super::UI::WindowsAndMessaging::MESSAGEBOX_RESULT, bwait: P3) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| P3: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSSendMessageW(hserver: super::super::Foundation::HANDLE, sessionid: u32, ptitle: ::windows::core::PCWSTR, titlelength: u32, pmessage: ::windows::core::PCWSTR, messagelength: u32, style: super::super::UI::WindowsAndMessaging::MESSAGEBOX_STYLE, timeout: u32, presponse: *mut super::super::UI::WindowsAndMessaging::MESSAGEBOX_RESULT, bwait: super::super::Foundation::BOOL) -> super::super::Foundation::BOOL; |
| } |
| WTSSendMessageW(hserver.into(), sessionid, ptitle.into(), titlelength, pmessage.into(), messagelength, style, timeout, ::core::mem::transmute(presponse), bwait.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`, `\"Win32_Security\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_Security"))] |
| #[inline] |
| pub unsafe fn WTSSetListenerSecurityA<'a, P0, P1, P2>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: P1, securityinformation: u32, psecuritydescriptor: P2) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCSTR>, |
| P2: ::std::convert::Into<super::super::Security::PSECURITY_DESCRIPTOR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSSetListenerSecurityA(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: ::windows::core::PCSTR, securityinformation: u32, psecuritydescriptor: super::super::Security::PSECURITY_DESCRIPTOR) -> super::super::Foundation::BOOL; |
| } |
| WTSSetListenerSecurityA(hserver.into(), ::core::mem::transmute(preserved), reserved, plistenername.into(), securityinformation, psecuritydescriptor.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`, `\"Win32_Security\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_Security"))] |
| #[inline] |
| pub unsafe fn WTSSetListenerSecurityW<'a, P0, P1, P2>(hserver: P0, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: P1, securityinformation: u32, psecuritydescriptor: P2) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<super::super::Security::PSECURITY_DESCRIPTOR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSSetListenerSecurityW(hserver: super::super::Foundation::HANDLE, preserved: *const ::core::ffi::c_void, reserved: u32, plistenername: ::windows::core::PCWSTR, securityinformation: u32, psecuritydescriptor: super::super::Security::PSECURITY_DESCRIPTOR) -> super::super::Foundation::BOOL; |
| } |
| WTSSetListenerSecurityW(hserver.into(), ::core::mem::transmute(preserved), reserved, plistenername.into(), securityinformation, psecuritydescriptor.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSSetRenderHint<'a, P0>(prenderhintid: *mut u64, hwndowner: P0, renderhinttype: u32, phintdata: ::core::option::Option<&[u8]>) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HWND>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSSetRenderHint(prenderhintid: *mut u64, hwndowner: super::super::Foundation::HWND, renderhinttype: u32, cbhintdatalength: u32, phintdata: *const u8) -> ::windows::core::HRESULT; |
| } |
| WTSSetRenderHint(::core::mem::transmute(prenderhintid), hwndowner.into(), renderhinttype, phintdata.as_deref().map_or(0, |slice| slice.len() as _), ::core::mem::transmute(phintdata.as_deref().map_or(::core::ptr::null(), |slice| slice.as_ptr()))).ok() |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSSetUserConfigA<'a, P0, P1>(pservername: P0, pusername: P1, wtsconfigclass: WTS_CONFIG_CLASS, pbuffer: &[u8]) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| P1: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSSetUserConfigA(pservername: ::windows::core::PCSTR, pusername: ::windows::core::PCSTR, wtsconfigclass: WTS_CONFIG_CLASS, pbuffer: ::windows::core::PCSTR, datalength: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSSetUserConfigA(pservername.into(), pusername.into(), wtsconfigclass, ::core::mem::transmute(pbuffer.as_ptr()), pbuffer.len() as _) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSSetUserConfigW<'a, P0, P1, P2>(pservername: P0, pusername: P1, wtsconfigclass: WTS_CONFIG_CLASS, pbuffer: P2, datalength: u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSSetUserConfigW(pservername: ::windows::core::PCWSTR, pusername: ::windows::core::PCWSTR, wtsconfigclass: WTS_CONFIG_CLASS, pbuffer: ::windows::core::PCWSTR, datalength: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSSetUserConfigW(pservername.into(), pusername.into(), wtsconfigclass, pbuffer.into(), datalength) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSShutdownSystem<'a, P0>(hserver: P0, shutdownflag: u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSShutdownSystem(hserver: super::super::Foundation::HANDLE, shutdownflag: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSShutdownSystem(hserver.into(), shutdownflag) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSStartRemoteControlSessionA<'a, P0>(ptargetservername: P0, targetlogonid: u32, hotkeyvk: u8, hotkeymodifiers: u16) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSStartRemoteControlSessionA(ptargetservername: ::windows::core::PCSTR, targetlogonid: u32, hotkeyvk: u8, hotkeymodifiers: u16) -> super::super::Foundation::BOOL; |
| } |
| WTSStartRemoteControlSessionA(ptargetservername.into(), targetlogonid, hotkeyvk, hotkeymodifiers) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSStartRemoteControlSessionW<'a, P0>(ptargetservername: P0, targetlogonid: u32, hotkeyvk: u8, hotkeymodifiers: u16) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSStartRemoteControlSessionW(ptargetservername: ::windows::core::PCWSTR, targetlogonid: u32, hotkeyvk: u8, hotkeymodifiers: u16) -> super::super::Foundation::BOOL; |
| } |
| WTSStartRemoteControlSessionW(ptargetservername.into(), targetlogonid, hotkeyvk, hotkeymodifiers) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSStopRemoteControlSession(logonid: u32) -> super::super::Foundation::BOOL { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSStopRemoteControlSession(logonid: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSStopRemoteControlSession(logonid) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSTerminateProcess<'a, P0>(hserver: P0, processid: u32, exitcode: u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSTerminateProcess(hserver: super::super::Foundation::HANDLE, processid: u32, exitcode: u32) -> super::super::Foundation::BOOL; |
| } |
| WTSTerminateProcess(hserver.into(), processid, exitcode) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSUnRegisterSessionNotification<'a, P0>(hwnd: P0) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HWND>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSUnRegisterSessionNotification(hwnd: super::super::Foundation::HWND) -> super::super::Foundation::BOOL; |
| } |
| WTSUnRegisterSessionNotification(hwnd.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSUnRegisterSessionNotificationEx<'a, P0, P1>(hserver: P0, hwnd: P1) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<super::super::Foundation::HWND>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSUnRegisterSessionNotificationEx(hserver: super::super::Foundation::HANDLE, hwnd: super::super::Foundation::HWND) -> super::super::Foundation::BOOL; |
| } |
| WTSUnRegisterSessionNotificationEx(hserver.into(), hwnd.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSVirtualChannelClose<'a, P0>(hchannelhandle: P0) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSVirtualChannelClose(hchannelhandle: super::super::Foundation::HANDLE) -> super::super::Foundation::BOOL; |
| } |
| WTSVirtualChannelClose(hchannelhandle.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSVirtualChannelOpen<'a, P0, P1>(hserver: P0, sessionid: u32, pvirtualname: P1) -> ::windows::core::Result<HwtsVirtualChannelHandle> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| P1: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSVirtualChannelOpen(hserver: super::super::Foundation::HANDLE, sessionid: u32, pvirtualname: ::windows::core::PCSTR) -> HwtsVirtualChannelHandle; |
| } |
| let result__ = WTSVirtualChannelOpen(hserver.into(), sessionid, pvirtualname.into()); |
| (!result__.is_invalid()).then(|| result__).ok_or_else(::windows::core::Error::from_win32) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[inline] |
| pub unsafe fn WTSVirtualChannelOpenEx<'a, P0>(sessionid: u32, pvirtualname: P0, flags: u32) -> ::windows::core::Result<HwtsVirtualChannelHandle> |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSVirtualChannelOpenEx(sessionid: u32, pvirtualname: ::windows::core::PCSTR, flags: u32) -> HwtsVirtualChannelHandle; |
| } |
| let result__ = WTSVirtualChannelOpenEx(sessionid, pvirtualname.into(), flags); |
| (!result__.is_invalid()).then(|| result__).ok_or_else(::windows::core::Error::from_win32) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSVirtualChannelPurgeInput<'a, P0>(hchannelhandle: P0) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSVirtualChannelPurgeInput(hchannelhandle: super::super::Foundation::HANDLE) -> super::super::Foundation::BOOL; |
| } |
| WTSVirtualChannelPurgeInput(hchannelhandle.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSVirtualChannelPurgeOutput<'a, P0>(hchannelhandle: P0) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSVirtualChannelPurgeOutput(hchannelhandle: super::super::Foundation::HANDLE) -> super::super::Foundation::BOOL; |
| } |
| WTSVirtualChannelPurgeOutput(hchannelhandle.into()) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSVirtualChannelQuery<'a, P0>(hchannelhandle: P0, param1: WTS_VIRTUAL_CLASS, ppbuffer: *mut *mut ::core::ffi::c_void, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSVirtualChannelQuery(hchannelhandle: super::super::Foundation::HANDLE, param1: WTS_VIRTUAL_CLASS, ppbuffer: *mut *mut ::core::ffi::c_void, pbytesreturned: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSVirtualChannelQuery(hchannelhandle.into(), param1, ::core::mem::transmute(ppbuffer), ::core::mem::transmute(pbytesreturned)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSVirtualChannelRead<'a, P0>(hchannelhandle: P0, timeout: u32, buffer: &mut [u8], pbytesread: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSVirtualChannelRead(hchannelhandle: super::super::Foundation::HANDLE, timeout: u32, buffer: ::windows::core::PSTR, buffersize: u32, pbytesread: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSVirtualChannelRead(hchannelhandle.into(), timeout, ::core::mem::transmute(buffer.as_ptr()), buffer.len() as _, ::core::mem::transmute(pbytesread)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSVirtualChannelWrite<'a, P0>(hchannelhandle: P0, buffer: &[u8], pbyteswritten: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSVirtualChannelWrite(hchannelhandle: super::super::Foundation::HANDLE, buffer: ::windows::core::PCSTR, length: u32, pbyteswritten: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSVirtualChannelWrite(hchannelhandle.into(), ::core::mem::transmute(buffer.as_ptr()), buffer.len() as _, ::core::mem::transmute(pbyteswritten)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| #[inline] |
| pub unsafe fn WTSWaitSystemEvent<'a, P0>(hserver: P0, eventmask: u32, peventflags: *mut u32) -> super::super::Foundation::BOOL |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| #[cfg_attr(windows, link(name = "windows"))] |
| extern "system" { |
| fn WTSWaitSystemEvent(hserver: super::super::Foundation::HANDLE, eventmask: u32, peventflags: *mut u32) -> super::super::Foundation::BOOL; |
| } |
| WTSWaitSystemEvent(hserver.into(), eventmask, ::core::mem::transmute(peventflags)) |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IADsTSUserEx(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IADsTSUserEx { |
| pub unsafe fn TerminalServicesProfilePath(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TerminalServicesProfilePath)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTerminalServicesProfilePath(&self, pnewval: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTerminalServicesProfilePath)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(pnewval)).ok() |
| } |
| pub unsafe fn TerminalServicesHomeDirectory(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TerminalServicesHomeDirectory)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTerminalServicesHomeDirectory(&self, pnewval: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTerminalServicesHomeDirectory)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(pnewval)).ok() |
| } |
| pub unsafe fn TerminalServicesHomeDrive(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TerminalServicesHomeDrive)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTerminalServicesHomeDrive(&self, pnewval: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTerminalServicesHomeDrive)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(pnewval)).ok() |
| } |
| pub unsafe fn AllowLogon(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).AllowLogon)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetAllowLogon(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetAllowLogon)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn EnableRemoteControl(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).EnableRemoteControl)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetEnableRemoteControl(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetEnableRemoteControl)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn MaxDisconnectionTime(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).MaxDisconnectionTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetMaxDisconnectionTime(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetMaxDisconnectionTime)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn MaxConnectionTime(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).MaxConnectionTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetMaxConnectionTime(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetMaxConnectionTime)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn MaxIdleTime(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).MaxIdleTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetMaxIdleTime(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetMaxIdleTime)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn ReconnectionAction(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).ReconnectionAction)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetReconnectionAction(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetReconnectionAction)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn BrokenConnectionAction(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).BrokenConnectionAction)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetBrokenConnectionAction(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetBrokenConnectionAction)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn ConnectClientDrivesAtLogon(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).ConnectClientDrivesAtLogon)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetConnectClientDrivesAtLogon(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetConnectClientDrivesAtLogon)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn ConnectClientPrintersAtLogon(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).ConnectClientPrintersAtLogon)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetConnectClientPrintersAtLogon(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetConnectClientPrintersAtLogon)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn DefaultToMainPrinter(&self) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).DefaultToMainPrinter)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| pub unsafe fn SetDefaultToMainPrinter(&self, newval: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetDefaultToMainPrinter)(::windows::core::Vtable::as_raw(self), newval).ok() |
| } |
| pub unsafe fn TerminalServicesWorkDirectory(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TerminalServicesWorkDirectory)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTerminalServicesWorkDirectory(&self, pnewval: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTerminalServicesWorkDirectory)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(pnewval)).ok() |
| } |
| pub unsafe fn TerminalServicesInitialProgram(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TerminalServicesInitialProgram)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTerminalServicesInitialProgram(&self, pnewval: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTerminalServicesInitialProgram)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(pnewval)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IADsTSUserEx, ::windows::core::IUnknown, super::Com::IDispatch); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IADsTSUserEx { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IADsTSUserEx { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IADsTSUserEx {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IADsTSUserEx { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IADsTSUserEx").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IADsTSUserEx { |
| type Vtable = IADsTSUserEx_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IADsTSUserEx { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xc4930e79_2989_4462_8a60_2fcf2f2955ef); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IADsTSUserEx_Vtbl { |
| pub base__: super::Com::IDispatch_Vtbl, |
| pub TerminalServicesProfilePath: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTerminalServicesProfilePath: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnewval: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub TerminalServicesHomeDirectory: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTerminalServicesHomeDirectory: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnewval: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub TerminalServicesHomeDrive: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTerminalServicesHomeDrive: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnewval: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub AllowLogon: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetAllowLogon: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub EnableRemoteControl: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetEnableRemoteControl: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub MaxDisconnectionTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetMaxDisconnectionTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub MaxConnectionTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetMaxConnectionTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub MaxIdleTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetMaxIdleTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub ReconnectionAction: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnewval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetReconnectionAction: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub BrokenConnectionAction: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnewval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetBrokenConnectionAction: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub ConnectClientDrivesAtLogon: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnewval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetConnectClientDrivesAtLogon: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub ConnectClientPrintersAtLogon: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetConnectClientPrintersAtLogon: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub DefaultToMainPrinter: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut i32) -> ::windows::core::HRESULT, |
| pub SetDefaultToMainPrinter: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, newval: i32) -> ::windows::core::HRESULT, |
| pub TerminalServicesWorkDirectory: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTerminalServicesWorkDirectory: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnewval: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub TerminalServicesInitialProgram: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTerminalServicesInitialProgram: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnewval: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IAudioDeviceEndpoint(::windows::core::IUnknown); |
| impl IAudioDeviceEndpoint { |
| pub unsafe fn SetBuffer(&self, maxperiod: i64, u32latencycoefficient: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetBuffer)(::windows::core::Vtable::as_raw(self), maxperiod, u32latencycoefficient).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetRTCaps(&self) -> ::windows::core::Result<super::super::Foundation::BOOL> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetRTCaps)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::BOOL>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetEventDrivenCapable(&self) -> ::windows::core::Result<super::super::Foundation::BOOL> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetEventDrivenCapable)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::BOOL>(result__) |
| } |
| pub unsafe fn WriteExclusiveModeParametersToSharedMemory(&self, htargetprocess: usize, hnsperiod: i64, hnsbufferduration: i64, u32latencycoefficient: u32, pu32sharedmemorysize: *mut u32, phsharedmemory: *mut usize) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).WriteExclusiveModeParametersToSharedMemory)(::windows::core::Vtable::as_raw(self), htargetprocess, hnsperiod, hnsbufferduration, u32latencycoefficient, ::core::mem::transmute(pu32sharedmemorysize), ::core::mem::transmute(phsharedmemory)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IAudioDeviceEndpoint, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IAudioDeviceEndpoint { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IAudioDeviceEndpoint { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IAudioDeviceEndpoint {} |
| impl ::core::fmt::Debug for IAudioDeviceEndpoint { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IAudioDeviceEndpoint").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IAudioDeviceEndpoint { |
| type Vtable = IAudioDeviceEndpoint_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IAudioDeviceEndpoint { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xd4952f5a_a0b2_4cc4_8b82_9358488dd8ac); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IAudioDeviceEndpoint_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub SetBuffer: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, maxperiod: i64, u32latencycoefficient: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetRTCaps: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pbisrtcapable: *mut super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetRTCaps: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetEventDrivenCapable: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pbiseventcapable: *mut super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetEventDrivenCapable: usize, |
| pub WriteExclusiveModeParametersToSharedMemory: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, htargetprocess: usize, hnsperiod: i64, hnsbufferduration: i64, u32latencycoefficient: u32, pu32sharedmemorysize: *mut u32, phsharedmemory: *mut usize) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IAudioEndpoint(::windows::core::IUnknown); |
| impl IAudioEndpoint { |
| #[doc = "*Required features: `\"Win32_Media_Audio\"`*"] |
| #[cfg(feature = "Win32_Media_Audio")] |
| pub unsafe fn GetFrameFormat(&self) -> ::windows::core::Result<*mut super::super::Media::Audio::WAVEFORMATEX> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetFrameFormat)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<*mut super::super::Media::Audio::WAVEFORMATEX>(result__) |
| } |
| pub unsafe fn GetFramesPerPacket(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetFramesPerPacket)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| pub unsafe fn GetLatency(&self) -> ::windows::core::Result<i64> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetLatency)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i64>(result__) |
| } |
| pub unsafe fn SetStreamFlags(&self, streamflags: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetStreamFlags)(::windows::core::Vtable::as_raw(self), streamflags).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn SetEventHandle<'a, P0>(&self, eventhandle: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE>, |
| { |
| (::windows::core::Vtable::vtable(self).SetEventHandle)(::windows::core::Vtable::as_raw(self), eventhandle.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IAudioEndpoint, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IAudioEndpoint { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IAudioEndpoint { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IAudioEndpoint {} |
| impl ::core::fmt::Debug for IAudioEndpoint { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IAudioEndpoint").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IAudioEndpoint { |
| type Vtable = IAudioEndpoint_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IAudioEndpoint { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x30a99515_1527_4451_af9f_00c5f0234daf); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IAudioEndpoint_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Media_Audio")] |
| pub GetFrameFormat: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppformat: *mut *mut super::super::Media::Audio::WAVEFORMATEX) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Media_Audio"))] |
| GetFrameFormat: usize, |
| pub GetFramesPerPacket: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pframesperpacket: *mut u32) -> ::windows::core::HRESULT, |
| pub GetLatency: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, platency: *mut i64) -> ::windows::core::HRESULT, |
| pub SetStreamFlags: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, streamflags: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub SetEventHandle: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, eventhandle: super::super::Foundation::HANDLE) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| SetEventHandle: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IAudioEndpointControl(::windows::core::IUnknown); |
| impl IAudioEndpointControl { |
| pub unsafe fn Start(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Start)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn Reset(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Reset)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn Stop(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Stop)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IAudioEndpointControl, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IAudioEndpointControl { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IAudioEndpointControl { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IAudioEndpointControl {} |
| impl ::core::fmt::Debug for IAudioEndpointControl { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IAudioEndpointControl").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IAudioEndpointControl { |
| type Vtable = IAudioEndpointControl_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IAudioEndpointControl { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xc684b72a_6df4_4774_bdf9_76b77509b653); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IAudioEndpointControl_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Start: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Reset: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Stop: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IAudioEndpointRT(::windows::core::IUnknown); |
| impl IAudioEndpointRT { |
| pub unsafe fn GetCurrentPadding(&self, ppadding: *mut i64, paecurrentposition: *mut AE_CURRENT_POSITION) { |
| (::windows::core::Vtable::vtable(self).GetCurrentPadding)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(ppadding), ::core::mem::transmute(paecurrentposition)) |
| } |
| pub unsafe fn ProcessingComplete(&self) { |
| (::windows::core::Vtable::vtable(self).ProcessingComplete)(::windows::core::Vtable::as_raw(self)) |
| } |
| pub unsafe fn SetPinInactive(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetPinInactive)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn SetPinActive(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetPinActive)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IAudioEndpointRT, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IAudioEndpointRT { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IAudioEndpointRT { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IAudioEndpointRT {} |
| impl ::core::fmt::Debug for IAudioEndpointRT { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IAudioEndpointRT").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IAudioEndpointRT { |
| type Vtable = IAudioEndpointRT_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IAudioEndpointRT { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xdfd2005f_a6e5_4d39_a265_939ada9fbb4d); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IAudioEndpointRT_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetCurrentPadding: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppadding: *mut i64, paecurrentposition: *mut AE_CURRENT_POSITION), |
| pub ProcessingComplete: unsafe extern "system" fn(this: *mut ::core::ffi::c_void), |
| pub SetPinInactive: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub SetPinActive: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IAudioInputEndpointRT(::windows::core::IUnknown); |
| impl IAudioInputEndpointRT { |
| #[doc = "*Required features: `\"Win32_Media_Audio_Apo\"`*"] |
| #[cfg(feature = "Win32_Media_Audio_Apo")] |
| pub unsafe fn GetInputDataPointer(&self, pconnectionproperty: *mut super::super::Media::Audio::Apo::APO_CONNECTION_PROPERTY, paetimestamp: *mut AE_CURRENT_POSITION) { |
| (::windows::core::Vtable::vtable(self).GetInputDataPointer)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pconnectionproperty), ::core::mem::transmute(paetimestamp)) |
| } |
| pub unsafe fn ReleaseInputDataPointer(&self, u32framecount: u32, pdatapointer: usize) { |
| (::windows::core::Vtable::vtable(self).ReleaseInputDataPointer)(::windows::core::Vtable::as_raw(self), u32framecount, pdatapointer) |
| } |
| pub unsafe fn PulseEndpoint(&self) { |
| (::windows::core::Vtable::vtable(self).PulseEndpoint)(::windows::core::Vtable::as_raw(self)) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IAudioInputEndpointRT, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IAudioInputEndpointRT { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IAudioInputEndpointRT { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IAudioInputEndpointRT {} |
| impl ::core::fmt::Debug for IAudioInputEndpointRT { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IAudioInputEndpointRT").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IAudioInputEndpointRT { |
| type Vtable = IAudioInputEndpointRT_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IAudioInputEndpointRT { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x8026ab61_92b2_43c1_a1df_5c37ebd08d82); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IAudioInputEndpointRT_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Media_Audio_Apo")] |
| pub GetInputDataPointer: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pconnectionproperty: *mut super::super::Media::Audio::Apo::APO_CONNECTION_PROPERTY, paetimestamp: *mut AE_CURRENT_POSITION), |
| #[cfg(not(feature = "Win32_Media_Audio_Apo"))] |
| GetInputDataPointer: usize, |
| pub ReleaseInputDataPointer: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, u32framecount: u32, pdatapointer: usize), |
| pub PulseEndpoint: unsafe extern "system" fn(this: *mut ::core::ffi::c_void), |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IAudioOutputEndpointRT(::windows::core::IUnknown); |
| impl IAudioOutputEndpointRT { |
| pub unsafe fn GetOutputDataPointer(&self, u32framecount: u32, paetimestamp: *const AE_CURRENT_POSITION) -> usize { |
| (::windows::core::Vtable::vtable(self).GetOutputDataPointer)(::windows::core::Vtable::as_raw(self), u32framecount, ::core::mem::transmute(paetimestamp)) |
| } |
| #[doc = "*Required features: `\"Win32_Media_Audio_Apo\"`*"] |
| #[cfg(feature = "Win32_Media_Audio_Apo")] |
| pub unsafe fn ReleaseOutputDataPointer(&self, pconnectionproperty: *const super::super::Media::Audio::Apo::APO_CONNECTION_PROPERTY) { |
| (::windows::core::Vtable::vtable(self).ReleaseOutputDataPointer)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pconnectionproperty)) |
| } |
| pub unsafe fn PulseEndpoint(&self) { |
| (::windows::core::Vtable::vtable(self).PulseEndpoint)(::windows::core::Vtable::as_raw(self)) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IAudioOutputEndpointRT, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IAudioOutputEndpointRT { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IAudioOutputEndpointRT { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IAudioOutputEndpointRT {} |
| impl ::core::fmt::Debug for IAudioOutputEndpointRT { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IAudioOutputEndpointRT").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IAudioOutputEndpointRT { |
| type Vtable = IAudioOutputEndpointRT_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IAudioOutputEndpointRT { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x8fa906e4_c31c_4e31_932e_19a66385e9aa); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IAudioOutputEndpointRT_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetOutputDataPointer: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, u32framecount: u32, paetimestamp: *const AE_CURRENT_POSITION) -> usize, |
| #[cfg(feature = "Win32_Media_Audio_Apo")] |
| pub ReleaseOutputDataPointer: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pconnectionproperty: *const super::super::Media::Audio::Apo::APO_CONNECTION_PROPERTY), |
| #[cfg(not(feature = "Win32_Media_Audio_Apo"))] |
| ReleaseOutputDataPointer: usize, |
| pub PulseEndpoint: unsafe extern "system" fn(this: *mut ::core::ffi::c_void), |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IRemoteDesktopClient(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IRemoteDesktopClient { |
| pub unsafe fn Connect(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Connect)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn Disconnect(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Disconnect)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn Reconnect(&self, width: u32, height: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Reconnect)(::windows::core::Vtable::as_raw(self), width, height).ok() |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn Settings(&self) -> ::windows::core::Result<IRemoteDesktopClientSettings> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Settings)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IRemoteDesktopClientSettings>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn Actions(&self) -> ::windows::core::Result<IRemoteDesktopClientActions> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Actions)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IRemoteDesktopClientActions>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn TouchPointer(&self) -> ::windows::core::Result<IRemoteDesktopClientTouchPointer> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TouchPointer)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IRemoteDesktopClientTouchPointer>(result__) |
| } |
| pub unsafe fn DeleteSavedCredentials(&self, servername: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DeleteSavedCredentials)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(servername)).ok() |
| } |
| pub unsafe fn UpdateSessionDisplaySettings(&self, width: u32, height: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).UpdateSessionDisplaySettings)(::windows::core::Vtable::as_raw(self), width, height).ok() |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn attachEvent<'a, P0>(&self, eventname: &::windows::core::BSTR, callback: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, super::Com::IDispatch>>, |
| { |
| (::windows::core::Vtable::vtable(self).attachEvent)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(eventname), callback.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn detachEvent<'a, P0>(&self, eventname: &::windows::core::BSTR, callback: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, super::Com::IDispatch>>, |
| { |
| (::windows::core::Vtable::vtable(self).detachEvent)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(eventname), callback.into().abi()).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IRemoteDesktopClient, ::windows::core::IUnknown, super::Com::IDispatch); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IRemoteDesktopClient { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IRemoteDesktopClient { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IRemoteDesktopClient {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IRemoteDesktopClient { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IRemoteDesktopClient").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IRemoteDesktopClient { |
| type Vtable = IRemoteDesktopClient_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IRemoteDesktopClient { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x57d25668_625a_4905_be4e_304caa13f89c); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IRemoteDesktopClient_Vtbl { |
| pub base__: super::Com::IDispatch_Vtbl, |
| pub Connect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Disconnect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Reconnect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, width: u32, height: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com")] |
| pub Settings: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, settings: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| Settings: usize, |
| #[cfg(feature = "Win32_System_Com")] |
| pub Actions: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, actions: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| Actions: usize, |
| #[cfg(feature = "Win32_System_Com")] |
| pub TouchPointer: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, touchpointer: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| TouchPointer: usize, |
| pub DeleteSavedCredentials: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, servername: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub UpdateSessionDisplaySettings: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, width: u32, height: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com")] |
| pub attachEvent: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, eventname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, callback: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| attachEvent: usize, |
| #[cfg(feature = "Win32_System_Com")] |
| pub detachEvent: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, eventname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, callback: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| detachEvent: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IRemoteDesktopClientActions(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IRemoteDesktopClientActions { |
| pub unsafe fn SuspendScreenUpdates(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SuspendScreenUpdates)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn ResumeScreenUpdates(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ResumeScreenUpdates)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn ExecuteRemoteAction(&self, remoteaction: RemoteActionType) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ExecuteRemoteAction)(::windows::core::Vtable::as_raw(self), remoteaction).ok() |
| } |
| pub unsafe fn GetSnapshot(&self, snapshotencoding: SnapshotEncodingType, snapshotformat: SnapshotFormatType, snapshotwidth: u32, snapshotheight: u32) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetSnapshot)(::windows::core::Vtable::as_raw(self), snapshotencoding, snapshotformat, snapshotwidth, snapshotheight, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IRemoteDesktopClientActions, ::windows::core::IUnknown, super::Com::IDispatch); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IRemoteDesktopClientActions { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IRemoteDesktopClientActions { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IRemoteDesktopClientActions {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IRemoteDesktopClientActions { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IRemoteDesktopClientActions").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IRemoteDesktopClientActions { |
| type Vtable = IRemoteDesktopClientActions_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IRemoteDesktopClientActions { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x7d54bc4e_1028_45d4_8b0a_b9b6bffba176); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IRemoteDesktopClientActions_Vtbl { |
| pub base__: super::Com::IDispatch_Vtbl, |
| pub SuspendScreenUpdates: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub ResumeScreenUpdates: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub ExecuteRemoteAction: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, remoteaction: RemoteActionType) -> ::windows::core::HRESULT, |
| pub GetSnapshot: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, snapshotencoding: SnapshotEncodingType, snapshotformat: SnapshotFormatType, snapshotwidth: u32, snapshotheight: u32, snapshotdata: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IRemoteDesktopClientSettings(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IRemoteDesktopClientSettings { |
| pub unsafe fn ApplySettings(&self, rdpfilecontents: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ApplySettings)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(rdpfilecontents)).ok() |
| } |
| pub unsafe fn RetrieveSettings(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).RetrieveSettings)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn GetRdpProperty(&self, propertyname: &::windows::core::BSTR) -> ::windows::core::Result<super::Com::VARIANT> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetRdpProperty)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(propertyname), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::Com::VARIANT>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn SetRdpProperty<'a, P0>(&self, propertyname: &::windows::core::BSTR, value: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, super::Com::VARIANT>>, |
| { |
| (::windows::core::Vtable::vtable(self).SetRdpProperty)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(propertyname), value.into().abi()).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IRemoteDesktopClientSettings, ::windows::core::IUnknown, super::Com::IDispatch); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IRemoteDesktopClientSettings { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IRemoteDesktopClientSettings { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IRemoteDesktopClientSettings {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IRemoteDesktopClientSettings { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IRemoteDesktopClientSettings").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IRemoteDesktopClientSettings { |
| type Vtable = IRemoteDesktopClientSettings_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IRemoteDesktopClientSettings { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x48a0f2a7_2713_431f_bbac_6f4558e7d64d); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IRemoteDesktopClientSettings_Vtbl { |
| pub base__: super::Com::IDispatch_Vtbl, |
| pub ApplySettings: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, rdpfilecontents: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub RetrieveSettings: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, rdpfilecontents: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub GetRdpProperty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, value: *mut ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| GetRdpProperty: usize, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub SetRdpProperty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, value: ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| SetRdpProperty: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IRemoteDesktopClientTouchPointer(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IRemoteDesktopClientTouchPointer { |
| pub unsafe fn SetEnabled(&self, enabled: i16) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetEnabled)(::windows::core::Vtable::as_raw(self), enabled).ok() |
| } |
| pub unsafe fn Enabled(&self) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Enabled)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn SetEventsEnabled(&self, eventsenabled: i16) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetEventsEnabled)(::windows::core::Vtable::as_raw(self), eventsenabled).ok() |
| } |
| pub unsafe fn EventsEnabled(&self) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).EventsEnabled)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn SetPointerSpeed(&self, pointerspeed: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetPointerSpeed)(::windows::core::Vtable::as_raw(self), pointerspeed).ok() |
| } |
| pub unsafe fn PointerSpeed(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).PointerSpeed)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IRemoteDesktopClientTouchPointer, ::windows::core::IUnknown, super::Com::IDispatch); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IRemoteDesktopClientTouchPointer { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IRemoteDesktopClientTouchPointer { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IRemoteDesktopClientTouchPointer {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IRemoteDesktopClientTouchPointer { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IRemoteDesktopClientTouchPointer").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IRemoteDesktopClientTouchPointer { |
| type Vtable = IRemoteDesktopClientTouchPointer_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IRemoteDesktopClientTouchPointer { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x260ec22d_8cbc_44b5_9e88_2a37f6c93ae9); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IRemoteDesktopClientTouchPointer_Vtbl { |
| pub base__: super::Com::IDispatch_Vtbl, |
| pub SetEnabled: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, enabled: i16) -> ::windows::core::HRESULT, |
| pub Enabled: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, enabled: *mut i16) -> ::windows::core::HRESULT, |
| pub SetEventsEnabled: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, eventsenabled: i16) -> ::windows::core::HRESULT, |
| pub EventsEnabled: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, eventsenabled: *mut i16) -> ::windows::core::HRESULT, |
| pub SetPointerSpeed: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pointerspeed: u32) -> ::windows::core::HRESULT, |
| pub PointerSpeed: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pointerspeed: *mut u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IRemoteSystemAdditionalInfoProvider(::windows::core::IUnknown); |
| impl IRemoteSystemAdditionalInfoProvider { |
| pub unsafe fn GetAdditionalInfo<T>(&self, deduplicationid: *mut ::windows::core::HSTRING) -> ::windows::core::Result<T> |
| where |
| T: ::windows::core::Interface, |
| { |
| let mut result__ = ::core::option::Option::None; |
| (::windows::core::Vtable::vtable(self).GetAdditionalInfo)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(deduplicationid), &<T as ::windows::core::Interface>::IID, &mut result__ as *mut _ as *mut _).and_some(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IRemoteSystemAdditionalInfoProvider, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IRemoteSystemAdditionalInfoProvider { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IRemoteSystemAdditionalInfoProvider { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IRemoteSystemAdditionalInfoProvider {} |
| impl ::core::fmt::Debug for IRemoteSystemAdditionalInfoProvider { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IRemoteSystemAdditionalInfoProvider").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IRemoteSystemAdditionalInfoProvider { |
| type Vtable = IRemoteSystemAdditionalInfoProvider_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IRemoteSystemAdditionalInfoProvider { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xeeaa3d5f_ec63_4d27_af38_e86b1d7292cb); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IRemoteSystemAdditionalInfoProvider_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetAdditionalInfo: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, deduplicationid: *mut ::core::mem::ManuallyDrop<::windows::core::HSTRING>, riid: *const ::windows::core::GUID, mapview: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITSGAccountingEngine(::windows::core::IUnknown); |
| impl ITSGAccountingEngine { |
| pub unsafe fn DoAccounting<'a, P0>(&self, accountingdatatype: AAAccountingDataType, accountingdata: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, AAAccountingData>>, |
| { |
| (::windows::core::Vtable::vtable(self).DoAccounting)(::windows::core::Vtable::as_raw(self), accountingdatatype, accountingdata.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITSGAccountingEngine, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITSGAccountingEngine { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITSGAccountingEngine { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITSGAccountingEngine {} |
| impl ::core::fmt::Debug for ITSGAccountingEngine { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITSGAccountingEngine").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITSGAccountingEngine { |
| type Vtable = ITSGAccountingEngine_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITSGAccountingEngine { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x4ce2a0c9_e874_4f1a_86f4_06bbb9115338); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITSGAccountingEngine_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub DoAccounting: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, accountingdatatype: AAAccountingDataType, accountingdata: ::core::mem::ManuallyDrop<AAAccountingData>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITSGAuthenticateUserSink(::windows::core::IUnknown); |
| impl ITSGAuthenticateUserSink { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn OnUserAuthenticated<'a, P0>(&self, username: &::windows::core::BSTR, userdomain: &::windows::core::BSTR, context: usize, usertoken: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| { |
| (::windows::core::Vtable::vtable(self).OnUserAuthenticated)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(username), ::core::mem::transmute_copy(userdomain), context, usertoken.into()).ok() |
| } |
| pub unsafe fn OnUserAuthenticationFailed(&self, context: usize, genericerrorcode: ::windows::core::HRESULT, specificerrorcode: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnUserAuthenticationFailed)(::windows::core::Vtable::as_raw(self), context, genericerrorcode, specificerrorcode).ok() |
| } |
| pub unsafe fn ReauthenticateUser(&self, context: usize) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ReauthenticateUser)(::windows::core::Vtable::as_raw(self), context).ok() |
| } |
| pub unsafe fn DisconnectUser(&self, context: usize) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DisconnectUser)(::windows::core::Vtable::as_raw(self), context).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITSGAuthenticateUserSink, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITSGAuthenticateUserSink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITSGAuthenticateUserSink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITSGAuthenticateUserSink {} |
| impl ::core::fmt::Debug for ITSGAuthenticateUserSink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITSGAuthenticateUserSink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITSGAuthenticateUserSink { |
| type Vtable = ITSGAuthenticateUserSink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITSGAuthenticateUserSink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x2c3e2e73_a782_47f9_8dfb_77ee1ed27a03); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITSGAuthenticateUserSink_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub OnUserAuthenticated: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, username: ::core::mem::ManuallyDrop<::windows::core::BSTR>, userdomain: ::core::mem::ManuallyDrop<::windows::core::BSTR>, context: usize, usertoken: super::super::Foundation::HANDLE_PTR) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| OnUserAuthenticated: usize, |
| pub OnUserAuthenticationFailed: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, context: usize, genericerrorcode: ::windows::core::HRESULT, specificerrorcode: ::windows::core::HRESULT) -> ::windows::core::HRESULT, |
| pub ReauthenticateUser: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, context: usize) -> ::windows::core::HRESULT, |
| pub DisconnectUser: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, context: usize) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITSGAuthenticationEngine(::windows::core::IUnknown); |
| impl ITSGAuthenticationEngine { |
| pub unsafe fn AuthenticateUser<'a, P0>(&self, mainsessionid: ::windows::core::GUID, cookiedata: *const u8, numcookiebytes: u32, context: usize, psink: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITSGAuthenticateUserSink>>, |
| { |
| (::windows::core::Vtable::vtable(self).AuthenticateUser)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(mainsessionid), ::core::mem::transmute(cookiedata), numcookiebytes, context, psink.into().abi()).ok() |
| } |
| pub unsafe fn CancelAuthentication(&self, mainsessionid: ::windows::core::GUID, context: usize) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).CancelAuthentication)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(mainsessionid), context).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITSGAuthenticationEngine, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITSGAuthenticationEngine { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITSGAuthenticationEngine { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITSGAuthenticationEngine {} |
| impl ::core::fmt::Debug for ITSGAuthenticationEngine { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITSGAuthenticationEngine").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITSGAuthenticationEngine { |
| type Vtable = ITSGAuthenticationEngine_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITSGAuthenticationEngine { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x9ee3e5bf_04ab_4691_998c_d7f622321a56); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITSGAuthenticationEngine_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub AuthenticateUser: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, mainsessionid: ::windows::core::GUID, cookiedata: *const u8, numcookiebytes: u32, context: usize, psink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub CancelAuthentication: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, mainsessionid: ::windows::core::GUID, context: usize) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITSGAuthorizeConnectionSink(::windows::core::IUnknown); |
| impl ITSGAuthorizeConnectionSink { |
| pub unsafe fn OnConnectionAuthorized(&self, hrin: ::windows::core::HRESULT, mainsessionid: ::windows::core::GUID, pbsohresponse: &[u8], idletimeout: u32, sessiontimeout: u32, sessiontimeoutaction: SESSION_TIMEOUT_ACTION_TYPE, trustclass: AATrustClassID, policyattributes: *const u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnConnectionAuthorized)(::windows::core::Vtable::as_raw(self), hrin, ::core::mem::transmute(mainsessionid), pbsohresponse.len() as _, ::core::mem::transmute(pbsohresponse.as_ptr()), idletimeout, sessiontimeout, sessiontimeoutaction, trustclass, ::core::mem::transmute(policyattributes)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITSGAuthorizeConnectionSink, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITSGAuthorizeConnectionSink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITSGAuthorizeConnectionSink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITSGAuthorizeConnectionSink {} |
| impl ::core::fmt::Debug for ITSGAuthorizeConnectionSink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITSGAuthorizeConnectionSink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITSGAuthorizeConnectionSink { |
| type Vtable = ITSGAuthorizeConnectionSink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITSGAuthorizeConnectionSink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xc27ece33_7781_4318_98ef_1cf2da7b7005); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITSGAuthorizeConnectionSink_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnConnectionAuthorized: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, hrin: ::windows::core::HRESULT, mainsessionid: ::windows::core::GUID, cbsohresponse: u32, pbsohresponse: *const u8, idletimeout: u32, sessiontimeout: u32, sessiontimeoutaction: SESSION_TIMEOUT_ACTION_TYPE, trustclass: AATrustClassID, policyattributes: *const u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITSGAuthorizeResourceSink(::windows::core::IUnknown); |
| impl ITSGAuthorizeResourceSink { |
| pub unsafe fn OnChannelAuthorized(&self, hrin: ::windows::core::HRESULT, mainsessionid: ::windows::core::GUID, subsessionid: i32, allowedresourcenames: &[::windows::core::BSTR], failedresourcenames: &[::windows::core::BSTR]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnChannelAuthorized)(::windows::core::Vtable::as_raw(self), hrin, ::core::mem::transmute(mainsessionid), subsessionid, ::core::mem::transmute(allowedresourcenames.as_ptr()), allowedresourcenames.len() as _, ::core::mem::transmute(failedresourcenames.as_ptr()), failedresourcenames.len() as _).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITSGAuthorizeResourceSink, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITSGAuthorizeResourceSink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITSGAuthorizeResourceSink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITSGAuthorizeResourceSink {} |
| impl ::core::fmt::Debug for ITSGAuthorizeResourceSink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITSGAuthorizeResourceSink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITSGAuthorizeResourceSink { |
| type Vtable = ITSGAuthorizeResourceSink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITSGAuthorizeResourceSink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xfeddfcd4_fa12_4435_ae55_7ad1a9779af7); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITSGAuthorizeResourceSink_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnChannelAuthorized: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, hrin: ::windows::core::HRESULT, mainsessionid: ::windows::core::GUID, subsessionid: i32, allowedresourcenames: *const ::core::mem::ManuallyDrop<::windows::core::BSTR>, numallowedresourcenames: u32, failedresourcenames: *const ::core::mem::ManuallyDrop<::windows::core::BSTR>, numfailedresourcenames: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITSGPolicyEngine(::windows::core::IUnknown); |
| impl ITSGPolicyEngine { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn AuthorizeConnection<'a, P0, P1>(&self, mainsessionid: ::windows::core::GUID, username: &::windows::core::BSTR, authtype: AAAuthSchemes, clientmachineip: &::windows::core::BSTR, clientmachinename: &::windows::core::BSTR, sohdata: &[u8], cookiedata: &[u8], usertoken: P0, psink: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITSGAuthorizeConnectionSink>>, |
| { |
| (::windows::core::Vtable::vtable(self).AuthorizeConnection)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(mainsessionid), ::core::mem::transmute_copy(username), authtype, ::core::mem::transmute_copy(clientmachineip), ::core::mem::transmute_copy(clientmachinename), ::core::mem::transmute(sohdata.as_ptr()), sohdata.len() as _, ::core::mem::transmute(cookiedata.as_ptr()), cookiedata.len() as _, usertoken.into(), psink.into().abi()).ok() |
| } |
| pub unsafe fn AuthorizeResource<'a, P0>(&self, mainsessionid: ::windows::core::GUID, subsessionid: i32, username: &::windows::core::BSTR, resourcenames: &[::windows::core::BSTR], alternateresourcenames: &[::windows::core::BSTR], portnumber: u32, operation: &::windows::core::BSTR, cookie: &[u8], psink: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITSGAuthorizeResourceSink>>, |
| { |
| (::windows::core::Vtable::vtable(self).AuthorizeResource)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(mainsessionid), subsessionid, ::core::mem::transmute_copy(username), ::core::mem::transmute(resourcenames.as_ptr()), resourcenames.len() as _, ::core::mem::transmute(alternateresourcenames.as_ptr()), alternateresourcenames.len() as _, portnumber, ::core::mem::transmute_copy(operation), ::core::mem::transmute(cookie.as_ptr()), cookie.len() as _, psink.into().abi()).ok() |
| } |
| pub unsafe fn Refresh(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Refresh)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn IsQuarantineEnabled(&self) -> ::windows::core::Result<super::super::Foundation::BOOL> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).IsQuarantineEnabled)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::BOOL>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITSGPolicyEngine, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITSGPolicyEngine { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITSGPolicyEngine { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITSGPolicyEngine {} |
| impl ::core::fmt::Debug for ITSGPolicyEngine { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITSGPolicyEngine").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITSGPolicyEngine { |
| type Vtable = ITSGPolicyEngine_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITSGPolicyEngine { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x8bc24f08_6223_42f4_a5b4_8e37cd135bbd); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITSGPolicyEngine_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub AuthorizeConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, mainsessionid: ::windows::core::GUID, username: ::core::mem::ManuallyDrop<::windows::core::BSTR>, authtype: AAAuthSchemes, clientmachineip: ::core::mem::ManuallyDrop<::windows::core::BSTR>, clientmachinename: ::core::mem::ManuallyDrop<::windows::core::BSTR>, sohdata: *const u8, numsohbytes: u32, cookiedata: *const u8, numcookiebytes: u32, usertoken: super::super::Foundation::HANDLE_PTR, psink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| AuthorizeConnection: usize, |
| pub AuthorizeResource: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, mainsessionid: ::windows::core::GUID, subsessionid: i32, username: ::core::mem::ManuallyDrop<::windows::core::BSTR>, resourcenames: *const ::core::mem::ManuallyDrop<::windows::core::BSTR>, numresources: u32, alternateresourcenames: *const ::core::mem::ManuallyDrop<::windows::core::BSTR>, numalternateresourcename: u32, portnumber: u32, operation: ::core::mem::ManuallyDrop<::windows::core::BSTR>, cookie: *const u8, numbytesincookie: u32, psink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Refresh: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub IsQuarantineEnabled: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, quarantineenabled: *mut super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| IsQuarantineEnabled: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbBaseNotifySink(::windows::core::IUnknown); |
| impl ITsSbBaseNotifySink { |
| pub unsafe fn OnError(&self, hrerror: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnError)(::windows::core::Vtable::as_raw(self), hrerror).ok() |
| } |
| pub unsafe fn OnReportStatus(&self, messagetype: CLIENT_MESSAGE_TYPE, messageid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnReportStatus)(::windows::core::Vtable::as_raw(self), messagetype, messageid).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbBaseNotifySink, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbBaseNotifySink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbBaseNotifySink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbBaseNotifySink {} |
| impl ::core::fmt::Debug for ITsSbBaseNotifySink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbBaseNotifySink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbBaseNotifySink { |
| type Vtable = ITsSbBaseNotifySink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbBaseNotifySink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x808a6537_1282_4989_9e09_f43938b71722); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbBaseNotifySink_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnError: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, hrerror: ::windows::core::HRESULT) -> ::windows::core::HRESULT, |
| pub OnReportStatus: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, messagetype: CLIENT_MESSAGE_TYPE, messageid: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbClientConnection(::windows::core::IUnknown); |
| impl ITsSbClientConnection { |
| pub unsafe fn UserName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).UserName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn Domain(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Domain)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn InitialProgram(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).InitialProgram)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn LoadBalanceResult(&self) -> ::windows::core::Result<ITsSbLoadBalanceResult> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).LoadBalanceResult)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbLoadBalanceResult>(result__) |
| } |
| pub unsafe fn FarmName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).FarmName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn PutContext<'a, P0>(&self, contextid: &::windows::core::BSTR, context: P0) -> ::windows::core::Result<super::Com::VARIANT> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, super::Com::VARIANT>>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).PutContext)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(contextid), context.into().abi(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::Com::VARIANT>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn GetContext(&self, contextid: &::windows::core::BSTR) -> ::windows::core::Result<super::Com::VARIANT> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetContext)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(contextid), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::Com::VARIANT>(result__) |
| } |
| pub unsafe fn Environment(&self) -> ::windows::core::Result<ITsSbEnvironment> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Environment)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbEnvironment>(result__) |
| } |
| pub unsafe fn get_ConnectionError(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).get_ConnectionError)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn SamUserAccount(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).SamUserAccount)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn ClientConnectionPropertySet(&self) -> ::windows::core::Result<ITsSbClientConnectionPropertySet> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).ClientConnectionPropertySet)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbClientConnectionPropertySet>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn IsFirstAssignment(&self) -> ::windows::core::Result<super::super::Foundation::BOOL> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).IsFirstAssignment)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::BOOL>(result__) |
| } |
| pub unsafe fn RdFarmType(&self) -> ::windows::core::Result<RD_FARM_TYPE> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).RdFarmType)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<RD_FARM_TYPE>(result__) |
| } |
| pub unsafe fn UserSidString(&self) -> ::windows::core::Result<*mut i8> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).UserSidString)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<*mut i8>(result__) |
| } |
| pub unsafe fn GetDisconnectedSession(&self) -> ::windows::core::Result<ITsSbSession> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetDisconnectedSession)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbSession>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbClientConnection, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbClientConnection { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbClientConnection { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbClientConnection {} |
| impl ::core::fmt::Debug for ITsSbClientConnection { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbClientConnection").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbClientConnection { |
| type Vtable = ITsSbClientConnection_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbClientConnection { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x18857499_ad61_4b1b_b7df_cbcd41fb8338); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbClientConnection_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub UserName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub Domain: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub InitialProgram: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub LoadBalanceResult: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppval: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub FarmName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub PutContext: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, contextid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, context: ::core::mem::ManuallyDrop<super::Com::VARIANT>, existingcontext: *mut ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| PutContext: usize, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub GetContext: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, contextid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, context: *mut ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| GetContext: usize, |
| pub Environment: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppenvironment: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub get_ConnectionError: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub SamUserAccount: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub ClientConnectionPropertySet: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pppropertyset: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| ClientConnectionPropertySet: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub IsFirstAssignment: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppval: *mut super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| IsFirstAssignment: usize, |
| pub RdFarmType: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, prdfarmtype: *mut RD_FARM_TYPE) -> ::windows::core::HRESULT, |
| pub UserSidString: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pszusersidstring: *mut *mut i8) -> ::windows::core::HRESULT, |
| pub GetDisconnectedSession: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppsession: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(transparent)] |
| pub struct ITsSbClientConnectionPropertySet(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ITsSbClientConnectionPropertySet { |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Read<'a, P0, P1>(&self, pszpropname: P0, pvar: *mut super::Com::VARIANT, perrorlog: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, super::Com::IErrorLog>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.base__.Read)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar), perrorlog.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Write<'a, P0>(&self, pszpropname: P0, pvar: *const super::Com::VARIANT) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.base__.Write)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| ::windows::core::interface_hierarchy!(ITsSbClientConnectionPropertySet, ::windows::core::IUnknown, super::Com::StructuredStorage::IPropertyBag, ITsSbPropertySet); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::clone::Clone for ITsSbClientConnectionPropertySet { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::PartialEq for ITsSbClientConnectionPropertySet { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::Eq for ITsSbClientConnectionPropertySet {} |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::fmt::Debug for ITsSbClientConnectionPropertySet { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbClientConnectionPropertySet").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Vtable for ITsSbClientConnectionPropertySet { |
| type Vtable = ITsSbClientConnectionPropertySet_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Interface for ITsSbClientConnectionPropertySet { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xe51995b0_46d6_11dd_aa21_cedc55d89593); |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbClientConnectionPropertySet_Vtbl { |
| pub base__: ITsSbPropertySet_Vtbl, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbEnvironment(::windows::core::IUnknown); |
| impl ITsSbEnvironment { |
| pub unsafe fn Name(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Name)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn ServerWeight(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).ServerWeight)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn EnvironmentPropertySet(&self) -> ::windows::core::Result<ITsSbEnvironmentPropertySet> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).EnvironmentPropertySet)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbEnvironmentPropertySet>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn SetEnvironmentPropertySet<'a, P0>(&self, pval: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbEnvironmentPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).SetEnvironmentPropertySet)(::windows::core::Vtable::as_raw(self), pval.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbEnvironment, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbEnvironment { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbEnvironment { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbEnvironment {} |
| impl ::core::fmt::Debug for ITsSbEnvironment { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbEnvironment").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbEnvironment { |
| type Vtable = ITsSbEnvironment_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbEnvironment { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x8c87f7f7_bf51_4a5c_87bf_8e94fb6e2256); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbEnvironment_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Name: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub ServerWeight: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub EnvironmentPropertySet: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pppropertyset: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| EnvironmentPropertySet: usize, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub SetEnvironmentPropertySet: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| SetEnvironmentPropertySet: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(transparent)] |
| pub struct ITsSbEnvironmentPropertySet(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ITsSbEnvironmentPropertySet { |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Read<'a, P0, P1>(&self, pszpropname: P0, pvar: *mut super::Com::VARIANT, perrorlog: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, super::Com::IErrorLog>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.base__.Read)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar), perrorlog.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Write<'a, P0>(&self, pszpropname: P0, pvar: *const super::Com::VARIANT) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.base__.Write)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| ::windows::core::interface_hierarchy!(ITsSbEnvironmentPropertySet, ::windows::core::IUnknown, super::Com::StructuredStorage::IPropertyBag, ITsSbPropertySet); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::clone::Clone for ITsSbEnvironmentPropertySet { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::PartialEq for ITsSbEnvironmentPropertySet { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::Eq for ITsSbEnvironmentPropertySet {} |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::fmt::Debug for ITsSbEnvironmentPropertySet { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbEnvironmentPropertySet").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Vtable for ITsSbEnvironmentPropertySet { |
| type Vtable = ITsSbEnvironmentPropertySet_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Interface for ITsSbEnvironmentPropertySet { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xd0d1bf7e_7acf_11dd_a243_e51156d89593); |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbEnvironmentPropertySet_Vtbl { |
| pub base__: ITsSbPropertySet_Vtbl, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbFilterPluginStore(::windows::core::IUnknown); |
| impl ITsSbFilterPluginStore { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn SaveProperties<'a, P0>(&self, ppropertyset: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).SaveProperties)(::windows::core::Vtable::as_raw(self), ppropertyset.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn EnumerateProperties(&self) -> ::windows::core::Result<ITsSbPropertySet> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).EnumerateProperties)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbPropertySet>(result__) |
| } |
| pub unsafe fn DeleteProperties(&self, propertyname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DeleteProperties)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(propertyname)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbFilterPluginStore, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbFilterPluginStore { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbFilterPluginStore { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbFilterPluginStore {} |
| impl ::core::fmt::Debug for ITsSbFilterPluginStore { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbFilterPluginStore").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbFilterPluginStore { |
| type Vtable = ITsSbFilterPluginStore_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbFilterPluginStore { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x85b44b0f_ed78_413f_9702_fa6d3b5ee755); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbFilterPluginStore_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub SaveProperties: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppropertyset: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| SaveProperties: usize, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub EnumerateProperties: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pppropertyset: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| EnumerateProperties: usize, |
| pub DeleteProperties: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbGenericNotifySink(::windows::core::IUnknown); |
| impl ITsSbGenericNotifySink { |
| pub unsafe fn OnCompleted(&self, status: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnCompleted)(::windows::core::Vtable::as_raw(self), status).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetWaitTimeout(&self) -> ::windows::core::Result<super::super::Foundation::FILETIME> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetWaitTimeout)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::FILETIME>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbGenericNotifySink, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbGenericNotifySink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbGenericNotifySink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbGenericNotifySink {} |
| impl ::core::fmt::Debug for ITsSbGenericNotifySink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbGenericNotifySink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbGenericNotifySink { |
| type Vtable = ITsSbGenericNotifySink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbGenericNotifySink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x4c4c8c4f_300b_46ad_9164_8468a7e7568c); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbGenericNotifySink_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnCompleted: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, status: ::windows::core::HRESULT) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetWaitTimeout: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pfttimeout: *mut super::super::Foundation::FILETIME) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetWaitTimeout: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbGlobalStore(::windows::core::IUnknown); |
| impl ITsSbGlobalStore { |
| pub unsafe fn QueryTarget(&self, providername: &::windows::core::BSTR, targetname: &::windows::core::BSTR, farmname: &::windows::core::BSTR) -> ::windows::core::Result<ITsSbTarget> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).QueryTarget)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(providername), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(farmname), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbTarget>(result__) |
| } |
| pub unsafe fn QuerySessionBySessionId(&self, providername: &::windows::core::BSTR, dwsessionid: u32, targetname: &::windows::core::BSTR) -> ::windows::core::Result<ITsSbSession> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).QuerySessionBySessionId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(providername), dwsessionid, ::core::mem::transmute_copy(targetname), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbSession>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn EnumerateFarms(&self, providername: &::windows::core::BSTR, pdwcount: *mut u32, pval: *mut *mut super::Com::SAFEARRAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).EnumerateFarms)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(providername), ::core::mem::transmute(pdwcount), ::core::mem::transmute(pval)).ok() |
| } |
| pub unsafe fn EnumerateTargets(&self, providername: &::windows::core::BSTR, farmname: &::windows::core::BSTR, envname: &::windows::core::BSTR, pdwcount: *mut u32, pval: *mut *mut ::core::option::Option<ITsSbTarget>) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).EnumerateTargets)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(providername), ::core::mem::transmute_copy(farmname), ::core::mem::transmute_copy(envname), ::core::mem::transmute(pdwcount), ::core::mem::transmute(pval)).ok() |
| } |
| pub unsafe fn EnumerateEnvironmentsByProvider(&self, providername: &::windows::core::BSTR, pdwcount: *mut u32, ppval: *mut *mut ::core::option::Option<ITsSbEnvironment>) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).EnumerateEnvironmentsByProvider)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(providername), ::core::mem::transmute(pdwcount), ::core::mem::transmute(ppval)).ok() |
| } |
| pub unsafe fn EnumerateSessions(&self, providername: &::windows::core::BSTR, targetname: &::windows::core::BSTR, username: &::windows::core::BSTR, userdomain: &::windows::core::BSTR, poolname: &::windows::core::BSTR, initialprogram: &::windows::core::BSTR, psessionstate: *const TSSESSION_STATE, pdwcount: *mut u32, ppval: *mut *mut ::core::option::Option<ITsSbSession>) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).EnumerateSessions)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(providername), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(username), ::core::mem::transmute_copy(userdomain), ::core::mem::transmute_copy(poolname), ::core::mem::transmute_copy(initialprogram), ::core::mem::transmute(psessionstate), ::core::mem::transmute(pdwcount), ::core::mem::transmute(ppval)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn GetFarmProperty(&self, farmname: &::windows::core::BSTR, propertyname: &::windows::core::BSTR, pvarvalue: *const super::Com::VARIANT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).GetFarmProperty)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(farmname), ::core::mem::transmute_copy(propertyname), ::core::mem::transmute(pvarvalue)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbGlobalStore, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbGlobalStore { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbGlobalStore { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbGlobalStore {} |
| impl ::core::fmt::Debug for ITsSbGlobalStore { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbGlobalStore").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbGlobalStore { |
| type Vtable = ITsSbGlobalStore_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbGlobalStore { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x9ab60f7b_bd72_4d9f_8a3a_a0ea5574e635); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbGlobalStore_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub QueryTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, providername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, farmname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pptarget: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub QuerySessionBySessionId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, providername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, dwsessionid: u32, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, ppsession: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com")] |
| pub EnumerateFarms: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, providername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pdwcount: *mut u32, pval: *mut *mut super::Com::SAFEARRAY) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| EnumerateFarms: usize, |
| pub EnumerateTargets: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, providername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, farmname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, envname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pdwcount: *mut u32, pval: *mut *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub EnumerateEnvironmentsByProvider: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, providername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pdwcount: *mut u32, ppval: *mut *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub EnumerateSessions: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, providername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, username: ::core::mem::ManuallyDrop<::windows::core::BSTR>, userdomain: ::core::mem::ManuallyDrop<::windows::core::BSTR>, poolname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, initialprogram: ::core::mem::ManuallyDrop<::windows::core::BSTR>, psessionstate: *const TSSESSION_STATE, pdwcount: *mut u32, ppval: *mut *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub GetFarmProperty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, farmname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pvarvalue: *const ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| GetFarmProperty: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbLoadBalanceResult(::windows::core::IUnknown); |
| impl ITsSbLoadBalanceResult { |
| pub unsafe fn TargetName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbLoadBalanceResult, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbLoadBalanceResult { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbLoadBalanceResult { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbLoadBalanceResult {} |
| impl ::core::fmt::Debug for ITsSbLoadBalanceResult { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbLoadBalanceResult").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbLoadBalanceResult { |
| type Vtable = ITsSbLoadBalanceResult_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbLoadBalanceResult { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x24fdb7ac_fea6_11dc_9672_9a8956d89593); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbLoadBalanceResult_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub TargetName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbLoadBalancing(::windows::core::IUnknown); |
| impl ITsSbLoadBalancing { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn Initialize<'a, P0, P1, P2>(&self, pprovider: P0, pnotifysink: P1, ppropertyset: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvider>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginNotifySink>>, |
| P2: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.Initialize)(::windows::core::Vtable::as_raw(self), pprovider.into().abi(), pnotifysink.into().abi(), ppropertyset.into().abi()).ok() |
| } |
| pub unsafe fn Terminate(&self, hr: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.Terminate)(::windows::core::Vtable::as_raw(self), hr).ok() |
| } |
| pub unsafe fn GetMostSuitableTarget<'a, P0, P1>(&self, pconnection: P0, plbsink: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbClientConnection>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbLoadBalancingNotifySink>>, |
| { |
| (::windows::core::Vtable::vtable(self).GetMostSuitableTarget)(::windows::core::Vtable::as_raw(self), pconnection.into().abi(), plbsink.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbLoadBalancing, ::windows::core::IUnknown, ITsSbPlugin); |
| impl ::core::clone::Clone for ITsSbLoadBalancing { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbLoadBalancing { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbLoadBalancing {} |
| impl ::core::fmt::Debug for ITsSbLoadBalancing { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbLoadBalancing").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbLoadBalancing { |
| type Vtable = ITsSbLoadBalancing_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbLoadBalancing { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x24329274_9eb7_11dc_ae98_f2b456d89593); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbLoadBalancing_Vtbl { |
| pub base__: ITsSbPlugin_Vtbl, |
| pub GetMostSuitableTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pconnection: *mut ::core::ffi::c_void, plbsink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbLoadBalancingNotifySink(::windows::core::IUnknown); |
| impl ITsSbLoadBalancingNotifySink { |
| pub unsafe fn OnError(&self, hrerror: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnError)(::windows::core::Vtable::as_raw(self), hrerror).ok() |
| } |
| pub unsafe fn OnReportStatus(&self, messagetype: CLIENT_MESSAGE_TYPE, messageid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnReportStatus)(::windows::core::Vtable::as_raw(self), messagetype, messageid).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn OnGetMostSuitableTarget<'a, P0, P1>(&self, plbresult: P0, fisnewconnection: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbLoadBalanceResult>>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| (::windows::core::Vtable::vtable(self).OnGetMostSuitableTarget)(::windows::core::Vtable::as_raw(self), plbresult.into().abi(), fisnewconnection.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbLoadBalancingNotifySink, ::windows::core::IUnknown, ITsSbBaseNotifySink); |
| impl ::core::clone::Clone for ITsSbLoadBalancingNotifySink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbLoadBalancingNotifySink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbLoadBalancingNotifySink {} |
| impl ::core::fmt::Debug for ITsSbLoadBalancingNotifySink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbLoadBalancingNotifySink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbLoadBalancingNotifySink { |
| type Vtable = ITsSbLoadBalancingNotifySink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbLoadBalancingNotifySink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x5f8a8297_3244_4e6a_958a_27c822c1e141); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbLoadBalancingNotifySink_Vtbl { |
| pub base__: ITsSbBaseNotifySink_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub OnGetMostSuitableTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, plbresult: *mut ::core::ffi::c_void, fisnewconnection: super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| OnGetMostSuitableTarget: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbOrchestration(::windows::core::IUnknown); |
| impl ITsSbOrchestration { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn Initialize<'a, P0, P1, P2>(&self, pprovider: P0, pnotifysink: P1, ppropertyset: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvider>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginNotifySink>>, |
| P2: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.Initialize)(::windows::core::Vtable::as_raw(self), pprovider.into().abi(), pnotifysink.into().abi(), ppropertyset.into().abi()).ok() |
| } |
| pub unsafe fn Terminate(&self, hr: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.Terminate)(::windows::core::Vtable::as_raw(self), hr).ok() |
| } |
| pub unsafe fn PrepareTargetForConnect<'a, P0, P1>(&self, pconnection: P0, porchestrationnotifysink: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbClientConnection>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbOrchestrationNotifySink>>, |
| { |
| (::windows::core::Vtable::vtable(self).PrepareTargetForConnect)(::windows::core::Vtable::as_raw(self), pconnection.into().abi(), porchestrationnotifysink.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbOrchestration, ::windows::core::IUnknown, ITsSbPlugin); |
| impl ::core::clone::Clone for ITsSbOrchestration { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbOrchestration { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbOrchestration {} |
| impl ::core::fmt::Debug for ITsSbOrchestration { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbOrchestration").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbOrchestration { |
| type Vtable = ITsSbOrchestration_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbOrchestration { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x64fc1172_9eb7_11dc_8b00_3aba56d89593); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbOrchestration_Vtbl { |
| pub base__: ITsSbPlugin_Vtbl, |
| pub PrepareTargetForConnect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pconnection: *mut ::core::ffi::c_void, porchestrationnotifysink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbOrchestrationNotifySink(::windows::core::IUnknown); |
| impl ITsSbOrchestrationNotifySink { |
| pub unsafe fn OnError(&self, hrerror: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnError)(::windows::core::Vtable::as_raw(self), hrerror).ok() |
| } |
| pub unsafe fn OnReportStatus(&self, messagetype: CLIENT_MESSAGE_TYPE, messageid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnReportStatus)(::windows::core::Vtable::as_raw(self), messagetype, messageid).ok() |
| } |
| pub unsafe fn OnReadyToConnect<'a, P0>(&self, ptarget: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbTarget>>, |
| { |
| (::windows::core::Vtable::vtable(self).OnReadyToConnect)(::windows::core::Vtable::as_raw(self), ptarget.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbOrchestrationNotifySink, ::windows::core::IUnknown, ITsSbBaseNotifySink); |
| impl ::core::clone::Clone for ITsSbOrchestrationNotifySink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbOrchestrationNotifySink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbOrchestrationNotifySink {} |
| impl ::core::fmt::Debug for ITsSbOrchestrationNotifySink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbOrchestrationNotifySink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbOrchestrationNotifySink { |
| type Vtable = ITsSbOrchestrationNotifySink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbOrchestrationNotifySink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x36c37d61_926b_442f_bca5_118c6d50dcf2); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbOrchestrationNotifySink_Vtbl { |
| pub base__: ITsSbBaseNotifySink_Vtbl, |
| pub OnReadyToConnect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptarget: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbPlacement(::windows::core::IUnknown); |
| impl ITsSbPlacement { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn Initialize<'a, P0, P1, P2>(&self, pprovider: P0, pnotifysink: P1, ppropertyset: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvider>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginNotifySink>>, |
| P2: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.Initialize)(::windows::core::Vtable::as_raw(self), pprovider.into().abi(), pnotifysink.into().abi(), ppropertyset.into().abi()).ok() |
| } |
| pub unsafe fn Terminate(&self, hr: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.Terminate)(::windows::core::Vtable::as_raw(self), hr).ok() |
| } |
| pub unsafe fn QueryEnvironmentForTarget<'a, P0, P1>(&self, pconnection: P0, pplacementsink: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbClientConnection>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPlacementNotifySink>>, |
| { |
| (::windows::core::Vtable::vtable(self).QueryEnvironmentForTarget)(::windows::core::Vtable::as_raw(self), pconnection.into().abi(), pplacementsink.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbPlacement, ::windows::core::IUnknown, ITsSbPlugin); |
| impl ::core::clone::Clone for ITsSbPlacement { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbPlacement { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbPlacement {} |
| impl ::core::fmt::Debug for ITsSbPlacement { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbPlacement").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbPlacement { |
| type Vtable = ITsSbPlacement_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbPlacement { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xdaadee5f_6d32_480e_9e36_ddab2329f06d); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbPlacement_Vtbl { |
| pub base__: ITsSbPlugin_Vtbl, |
| pub QueryEnvironmentForTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pconnection: *mut ::core::ffi::c_void, pplacementsink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbPlacementNotifySink(::windows::core::IUnknown); |
| impl ITsSbPlacementNotifySink { |
| pub unsafe fn OnError(&self, hrerror: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnError)(::windows::core::Vtable::as_raw(self), hrerror).ok() |
| } |
| pub unsafe fn OnReportStatus(&self, messagetype: CLIENT_MESSAGE_TYPE, messageid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnReportStatus)(::windows::core::Vtable::as_raw(self), messagetype, messageid).ok() |
| } |
| pub unsafe fn OnQueryEnvironmentCompleted<'a, P0>(&self, penvironment: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbEnvironment>>, |
| { |
| (::windows::core::Vtable::vtable(self).OnQueryEnvironmentCompleted)(::windows::core::Vtable::as_raw(self), penvironment.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbPlacementNotifySink, ::windows::core::IUnknown, ITsSbBaseNotifySink); |
| impl ::core::clone::Clone for ITsSbPlacementNotifySink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbPlacementNotifySink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbPlacementNotifySink {} |
| impl ::core::fmt::Debug for ITsSbPlacementNotifySink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbPlacementNotifySink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbPlacementNotifySink { |
| type Vtable = ITsSbPlacementNotifySink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbPlacementNotifySink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x68a0c487_2b4f_46c2_94a1_6ce685183634); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbPlacementNotifySink_Vtbl { |
| pub base__: ITsSbBaseNotifySink_Vtbl, |
| pub OnQueryEnvironmentCompleted: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, penvironment: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbPlugin(::windows::core::IUnknown); |
| impl ITsSbPlugin { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn Initialize<'a, P0, P1, P2>(&self, pprovider: P0, pnotifysink: P1, ppropertyset: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvider>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginNotifySink>>, |
| P2: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).Initialize)(::windows::core::Vtable::as_raw(self), pprovider.into().abi(), pnotifysink.into().abi(), ppropertyset.into().abi()).ok() |
| } |
| pub unsafe fn Terminate(&self, hr: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Terminate)(::windows::core::Vtable::as_raw(self), hr).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbPlugin, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbPlugin { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbPlugin { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbPlugin {} |
| impl ::core::fmt::Debug for ITsSbPlugin { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbPlugin").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbPlugin { |
| type Vtable = ITsSbPlugin_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbPlugin { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x48cd7406_caab_465f_a5d6_baa863b9ea4f); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbPlugin_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub Initialize: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pprovider: *mut ::core::ffi::c_void, pnotifysink: *mut ::core::ffi::c_void, ppropertyset: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| Initialize: usize, |
| pub Terminate: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, hr: ::windows::core::HRESULT) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbPluginNotifySink(::windows::core::IUnknown); |
| impl ITsSbPluginNotifySink { |
| pub unsafe fn OnError(&self, hrerror: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnError)(::windows::core::Vtable::as_raw(self), hrerror).ok() |
| } |
| pub unsafe fn OnReportStatus(&self, messagetype: CLIENT_MESSAGE_TYPE, messageid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnReportStatus)(::windows::core::Vtable::as_raw(self), messagetype, messageid).ok() |
| } |
| pub unsafe fn OnInitialized(&self, hr: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnInitialized)(::windows::core::Vtable::as_raw(self), hr).ok() |
| } |
| pub unsafe fn OnTerminated(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnTerminated)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbPluginNotifySink, ::windows::core::IUnknown, ITsSbBaseNotifySink); |
| impl ::core::clone::Clone for ITsSbPluginNotifySink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbPluginNotifySink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbPluginNotifySink {} |
| impl ::core::fmt::Debug for ITsSbPluginNotifySink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbPluginNotifySink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbPluginNotifySink { |
| type Vtable = ITsSbPluginNotifySink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbPluginNotifySink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x44dfe30b_c3be_40f5_bf82_7a95bb795adf); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbPluginNotifySink_Vtbl { |
| pub base__: ITsSbBaseNotifySink_Vtbl, |
| pub OnInitialized: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, hr: ::windows::core::HRESULT) -> ::windows::core::HRESULT, |
| pub OnTerminated: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(transparent)] |
| pub struct ITsSbPluginPropertySet(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ITsSbPluginPropertySet { |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Read<'a, P0, P1>(&self, pszpropname: P0, pvar: *mut super::Com::VARIANT, perrorlog: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, super::Com::IErrorLog>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.base__.Read)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar), perrorlog.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Write<'a, P0>(&self, pszpropname: P0, pvar: *const super::Com::VARIANT) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.base__.Write)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| ::windows::core::interface_hierarchy!(ITsSbPluginPropertySet, ::windows::core::IUnknown, super::Com::StructuredStorage::IPropertyBag, ITsSbPropertySet); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::clone::Clone for ITsSbPluginPropertySet { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::PartialEq for ITsSbPluginPropertySet { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::Eq for ITsSbPluginPropertySet {} |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::fmt::Debug for ITsSbPluginPropertySet { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbPluginPropertySet").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Vtable for ITsSbPluginPropertySet { |
| type Vtable = ITsSbPluginPropertySet_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Interface for ITsSbPluginPropertySet { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x95006e34_7eff_4b6c_bb40_49a4fda7cea6); |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbPluginPropertySet_Vtbl { |
| pub base__: ITsSbPropertySet_Vtbl, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(transparent)] |
| pub struct ITsSbPropertySet(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ITsSbPropertySet { |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Read<'a, P0, P1>(&self, pszpropname: P0, pvar: *mut super::Com::VARIANT, perrorlog: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, super::Com::IErrorLog>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.Read)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar), perrorlog.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Write<'a, P0>(&self, pszpropname: P0, pvar: *const super::Com::VARIANT) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.Write)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| ::windows::core::interface_hierarchy!(ITsSbPropertySet, ::windows::core::IUnknown, super::Com::StructuredStorage::IPropertyBag); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::clone::Clone for ITsSbPropertySet { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::PartialEq for ITsSbPropertySet { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::Eq for ITsSbPropertySet {} |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::fmt::Debug for ITsSbPropertySet { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbPropertySet").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Vtable for ITsSbPropertySet { |
| type Vtable = ITsSbPropertySet_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Interface for ITsSbPropertySet { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x5c025171_bb1e_4baf_a212_6d5e9774b33b); |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbPropertySet_Vtbl { |
| pub base__: super::Com::StructuredStorage::IPropertyBag_Vtbl, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbProvider(::windows::core::IUnknown); |
| impl ITsSbProvider { |
| pub unsafe fn CreateTargetObject(&self, targetname: &::windows::core::BSTR, environmentname: &::windows::core::BSTR) -> ::windows::core::Result<ITsSbTarget> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateTargetObject)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(environmentname), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbTarget>(result__) |
| } |
| pub unsafe fn CreateLoadBalanceResultObject(&self, targetname: &::windows::core::BSTR) -> ::windows::core::Result<ITsSbLoadBalanceResult> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateLoadBalanceResultObject)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbLoadBalanceResult>(result__) |
| } |
| pub unsafe fn CreateSessionObject(&self, targetname: &::windows::core::BSTR, username: &::windows::core::BSTR, domain: &::windows::core::BSTR, sessionid: u32) -> ::windows::core::Result<ITsSbSession> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateSessionObject)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(username), ::core::mem::transmute_copy(domain), sessionid, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbSession>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn CreatePluginPropertySet(&self) -> ::windows::core::Result<ITsSbPluginPropertySet> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreatePluginPropertySet)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbPluginPropertySet>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn CreateTargetPropertySetObject(&self) -> ::windows::core::Result<ITsSbTargetPropertySet> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateTargetPropertySetObject)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbTargetPropertySet>(result__) |
| } |
| pub unsafe fn CreateEnvironmentObject(&self, name: &::windows::core::BSTR, serverweight: u32) -> ::windows::core::Result<ITsSbEnvironment> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateEnvironmentObject)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(name), serverweight, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbEnvironment>(result__) |
| } |
| pub unsafe fn GetResourcePluginStore(&self) -> ::windows::core::Result<ITsSbResourcePluginStore> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetResourcePluginStore)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbResourcePluginStore>(result__) |
| } |
| pub unsafe fn GetFilterPluginStore(&self) -> ::windows::core::Result<ITsSbFilterPluginStore> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetFilterPluginStore)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbFilterPluginStore>(result__) |
| } |
| pub unsafe fn RegisterForNotification<'a, P0>(&self, notificationtype: u32, resourcetomonitor: &::windows::core::BSTR, ppluginnotification: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbResourceNotification>>, |
| { |
| (::windows::core::Vtable::vtable(self).RegisterForNotification)(::windows::core::Vtable::as_raw(self), notificationtype, ::core::mem::transmute_copy(resourcetomonitor), ppluginnotification.into().abi()).ok() |
| } |
| pub unsafe fn UnRegisterForNotification(&self, notificationtype: u32, resourcetomonitor: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).UnRegisterForNotification)(::windows::core::Vtable::as_raw(self), notificationtype, ::core::mem::transmute_copy(resourcetomonitor)).ok() |
| } |
| pub unsafe fn GetInstanceOfGlobalStore(&self) -> ::windows::core::Result<ITsSbGlobalStore> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetInstanceOfGlobalStore)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbGlobalStore>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn CreateEnvironmentPropertySetObject(&self) -> ::windows::core::Result<ITsSbEnvironmentPropertySet> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateEnvironmentPropertySetObject)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbEnvironmentPropertySet>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbProvider, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbProvider { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbProvider { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbProvider {} |
| impl ::core::fmt::Debug for ITsSbProvider { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbProvider").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbProvider { |
| type Vtable = ITsSbProvider_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbProvider { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x87a4098f_6d7b_44dd_bc17_8ce44e370d52); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbProvider_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub CreateTargetObject: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, environmentname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pptarget: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub CreateLoadBalanceResultObject: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pplbresult: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub CreateSessionObject: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, username: ::core::mem::ManuallyDrop<::windows::core::BSTR>, domain: ::core::mem::ManuallyDrop<::windows::core::BSTR>, sessionid: u32, ppsession: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub CreatePluginPropertySet: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pppropertyset: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| CreatePluginPropertySet: usize, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub CreateTargetPropertySetObject: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pppropertyset: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| CreateTargetPropertySetObject: usize, |
| pub CreateEnvironmentObject: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, name: ::core::mem::ManuallyDrop<::windows::core::BSTR>, serverweight: u32, ppenvironment: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub GetResourcePluginStore: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppstore: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub GetFilterPluginStore: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppstore: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub RegisterForNotification: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, notificationtype: u32, resourcetomonitor: ::core::mem::ManuallyDrop<::windows::core::BSTR>, ppluginnotification: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub UnRegisterForNotification: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, notificationtype: u32, resourcetomonitor: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub GetInstanceOfGlobalStore: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppglobalstore: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub CreateEnvironmentPropertySetObject: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pppropertyset: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| CreateEnvironmentPropertySetObject: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbProvisioning(::windows::core::IUnknown); |
| impl ITsSbProvisioning { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn Initialize<'a, P0, P1, P2>(&self, pprovider: P0, pnotifysink: P1, ppropertyset: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvider>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginNotifySink>>, |
| P2: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.Initialize)(::windows::core::Vtable::as_raw(self), pprovider.into().abi(), pnotifysink.into().abi(), ppropertyset.into().abi()).ok() |
| } |
| pub unsafe fn Terminate(&self, hr: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.Terminate)(::windows::core::Vtable::as_raw(self), hr).ok() |
| } |
| pub unsafe fn CreateVirtualMachines<'a, P0>(&self, jobxmlstring: &::windows::core::BSTR, jobguid: &::windows::core::BSTR, psink: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvisioningPluginNotifySink>>, |
| { |
| (::windows::core::Vtable::vtable(self).CreateVirtualMachines)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(jobxmlstring), ::core::mem::transmute_copy(jobguid), psink.into().abi()).ok() |
| } |
| pub unsafe fn PatchVirtualMachines<'a, P0>(&self, jobxmlstring: &::windows::core::BSTR, jobguid: &::windows::core::BSTR, psink: P0, pvmpatchinfo: *const VM_PATCH_INFO) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvisioningPluginNotifySink>>, |
| { |
| (::windows::core::Vtable::vtable(self).PatchVirtualMachines)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(jobxmlstring), ::core::mem::transmute_copy(jobguid), psink.into().abi(), ::core::mem::transmute(pvmpatchinfo)).ok() |
| } |
| pub unsafe fn DeleteVirtualMachines<'a, P0>(&self, jobxmlstring: &::windows::core::BSTR, jobguid: &::windows::core::BSTR, psink: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvisioningPluginNotifySink>>, |
| { |
| (::windows::core::Vtable::vtable(self).DeleteVirtualMachines)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(jobxmlstring), ::core::mem::transmute_copy(jobguid), psink.into().abi()).ok() |
| } |
| pub unsafe fn CancelJob(&self, jobguid: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).CancelJob)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(jobguid)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbProvisioning, ::windows::core::IUnknown, ITsSbPlugin); |
| impl ::core::clone::Clone for ITsSbProvisioning { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbProvisioning { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbProvisioning {} |
| impl ::core::fmt::Debug for ITsSbProvisioning { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbProvisioning").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbProvisioning { |
| type Vtable = ITsSbProvisioning_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbProvisioning { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x2f6f0dbb_9e4f_462b_9c3f_fccc3dcb6232); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbProvisioning_Vtbl { |
| pub base__: ITsSbPlugin_Vtbl, |
| pub CreateVirtualMachines: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, jobxmlstring: ::core::mem::ManuallyDrop<::windows::core::BSTR>, jobguid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, psink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub PatchVirtualMachines: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, jobxmlstring: ::core::mem::ManuallyDrop<::windows::core::BSTR>, jobguid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, psink: *mut ::core::ffi::c_void, pvmpatchinfo: *const VM_PATCH_INFO) -> ::windows::core::HRESULT, |
| pub DeleteVirtualMachines: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, jobxmlstring: ::core::mem::ManuallyDrop<::windows::core::BSTR>, jobguid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, psink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub CancelJob: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, jobguid: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbProvisioningPluginNotifySink(::windows::core::IUnknown); |
| impl ITsSbProvisioningPluginNotifySink { |
| pub unsafe fn OnJobCreated(&self, pvmnotifyinfo: *const VM_NOTIFY_INFO) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnJobCreated)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pvmnotifyinfo)).ok() |
| } |
| pub unsafe fn OnVirtualMachineStatusChanged(&self, pvmnotifyentry: *const VM_NOTIFY_ENTRY, vmnotifystatus: VM_NOTIFY_STATUS, errorcode: ::windows::core::HRESULT, errordescr: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnVirtualMachineStatusChanged)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pvmnotifyentry), vmnotifystatus, errorcode, ::core::mem::transmute_copy(errordescr)).ok() |
| } |
| pub unsafe fn OnJobCompleted(&self, resultcode: ::windows::core::HRESULT, resultdescription: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnJobCompleted)(::windows::core::Vtable::as_raw(self), resultcode, ::core::mem::transmute_copy(resultdescription)).ok() |
| } |
| pub unsafe fn OnJobCancelled(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnJobCancelled)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn LockVirtualMachine(&self, pvmnotifyentry: *const VM_NOTIFY_ENTRY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).LockVirtualMachine)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pvmnotifyentry)).ok() |
| } |
| pub unsafe fn OnVirtualMachineHostStatusChanged(&self, vmhost: &::windows::core::BSTR, vmhostnotifystatus: VM_HOST_NOTIFY_STATUS, errorcode: ::windows::core::HRESULT, errordescr: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnVirtualMachineHostStatusChanged)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(vmhost), vmhostnotifystatus, errorcode, ::core::mem::transmute_copy(errordescr)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbProvisioningPluginNotifySink, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbProvisioningPluginNotifySink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbProvisioningPluginNotifySink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbProvisioningPluginNotifySink {} |
| impl ::core::fmt::Debug for ITsSbProvisioningPluginNotifySink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbProvisioningPluginNotifySink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbProvisioningPluginNotifySink { |
| type Vtable = ITsSbProvisioningPluginNotifySink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbProvisioningPluginNotifySink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xaca87a8e_818b_4581_a032_49c3dfb9c701); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbProvisioningPluginNotifySink_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnJobCreated: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pvmnotifyinfo: *const VM_NOTIFY_INFO) -> ::windows::core::HRESULT, |
| pub OnVirtualMachineStatusChanged: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pvmnotifyentry: *const VM_NOTIFY_ENTRY, vmnotifystatus: VM_NOTIFY_STATUS, errorcode: ::windows::core::HRESULT, errordescr: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub OnJobCompleted: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, resultcode: ::windows::core::HRESULT, resultdescription: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub OnJobCancelled: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub LockVirtualMachine: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pvmnotifyentry: *const VM_NOTIFY_ENTRY) -> ::windows::core::HRESULT, |
| pub OnVirtualMachineHostStatusChanged: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, vmhost: ::core::mem::ManuallyDrop<::windows::core::BSTR>, vmhostnotifystatus: VM_HOST_NOTIFY_STATUS, errorcode: ::windows::core::HRESULT, errordescr: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbResourceNotification(::windows::core::IUnknown); |
| impl ITsSbResourceNotification { |
| pub unsafe fn NotifySessionChange<'a, P0>(&self, changetype: TSSESSION_STATE, psession: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbSession>>, |
| { |
| (::windows::core::Vtable::vtable(self).NotifySessionChange)(::windows::core::Vtable::as_raw(self), changetype, psession.into().abi()).ok() |
| } |
| pub unsafe fn NotifyTargetChange<'a, P0>(&self, targetchangetype: u32, ptarget: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbTarget>>, |
| { |
| (::windows::core::Vtable::vtable(self).NotifyTargetChange)(::windows::core::Vtable::as_raw(self), targetchangetype, ptarget.into().abi()).ok() |
| } |
| pub unsafe fn NotifyClientConnectionStateChange<'a, P0>(&self, changetype: CONNECTION_CHANGE_NOTIFICATION, pconnection: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbClientConnection>>, |
| { |
| (::windows::core::Vtable::vtable(self).NotifyClientConnectionStateChange)(::windows::core::Vtable::as_raw(self), changetype, pconnection.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbResourceNotification, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbResourceNotification { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbResourceNotification { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbResourceNotification {} |
| impl ::core::fmt::Debug for ITsSbResourceNotification { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbResourceNotification").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbResourceNotification { |
| type Vtable = ITsSbResourceNotification_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbResourceNotification { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x65d3e85a_c39b_11dc_b92d_3cd255d89593); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbResourceNotification_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub NotifySessionChange: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, changetype: TSSESSION_STATE, psession: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub NotifyTargetChange: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetchangetype: u32, ptarget: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub NotifyClientConnectionStateChange: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, changetype: CONNECTION_CHANGE_NOTIFICATION, pconnection: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbResourceNotificationEx(::windows::core::IUnknown); |
| impl ITsSbResourceNotificationEx { |
| pub unsafe fn NotifySessionChangeEx(&self, targetname: &::windows::core::BSTR, username: &::windows::core::BSTR, domain: &::windows::core::BSTR, sessionid: u32, sessionstate: TSSESSION_STATE) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySessionChangeEx)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(username), ::core::mem::transmute_copy(domain), sessionid, sessionstate).ok() |
| } |
| pub unsafe fn NotifyTargetChangeEx(&self, targetname: &::windows::core::BSTR, targetchangetype: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifyTargetChangeEx)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), targetchangetype).ok() |
| } |
| pub unsafe fn NotifyClientConnectionStateChangeEx(&self, username: &::windows::core::BSTR, domain: &::windows::core::BSTR, initialprogram: &::windows::core::BSTR, poolname: &::windows::core::BSTR, targetname: &::windows::core::BSTR, connectionchangetype: CONNECTION_CHANGE_NOTIFICATION) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifyClientConnectionStateChangeEx)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(username), ::core::mem::transmute_copy(domain), ::core::mem::transmute_copy(initialprogram), ::core::mem::transmute_copy(poolname), ::core::mem::transmute_copy(targetname), connectionchangetype).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbResourceNotificationEx, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbResourceNotificationEx { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbResourceNotificationEx { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbResourceNotificationEx {} |
| impl ::core::fmt::Debug for ITsSbResourceNotificationEx { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbResourceNotificationEx").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbResourceNotificationEx { |
| type Vtable = ITsSbResourceNotificationEx_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbResourceNotificationEx { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xa8a47fde_ca91_44d2_b897_3aa28a43b2b7); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbResourceNotificationEx_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub NotifySessionChangeEx: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, username: ::core::mem::ManuallyDrop<::windows::core::BSTR>, domain: ::core::mem::ManuallyDrop<::windows::core::BSTR>, sessionid: u32, sessionstate: TSSESSION_STATE) -> ::windows::core::HRESULT, |
| pub NotifyTargetChangeEx: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, targetchangetype: u32) -> ::windows::core::HRESULT, |
| pub NotifyClientConnectionStateChangeEx: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, username: ::core::mem::ManuallyDrop<::windows::core::BSTR>, domain: ::core::mem::ManuallyDrop<::windows::core::BSTR>, initialprogram: ::core::mem::ManuallyDrop<::windows::core::BSTR>, poolname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, connectionchangetype: CONNECTION_CHANGE_NOTIFICATION) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbResourcePlugin(::windows::core::IUnknown); |
| impl ITsSbResourcePlugin { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn Initialize<'a, P0, P1, P2>(&self, pprovider: P0, pnotifysink: P1, ppropertyset: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvider>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginNotifySink>>, |
| P2: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.Initialize)(::windows::core::Vtable::as_raw(self), pprovider.into().abi(), pnotifysink.into().abi(), ppropertyset.into().abi()).ok() |
| } |
| pub unsafe fn Terminate(&self, hr: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.Terminate)(::windows::core::Vtable::as_raw(self), hr).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbResourcePlugin, ::windows::core::IUnknown, ITsSbPlugin); |
| impl ::core::clone::Clone for ITsSbResourcePlugin { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbResourcePlugin { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbResourcePlugin {} |
| impl ::core::fmt::Debug for ITsSbResourcePlugin { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbResourcePlugin").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbResourcePlugin { |
| type Vtable = ITsSbResourcePlugin_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbResourcePlugin { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xea8db42c_98ed_4535_a88b_2a164f35490f); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbResourcePlugin_Vtbl { |
| pub base__: ITsSbPlugin_Vtbl, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbResourcePluginStore(::windows::core::IUnknown); |
| impl ITsSbResourcePluginStore { |
| pub unsafe fn QueryTarget(&self, targetname: &::windows::core::BSTR, farmname: &::windows::core::BSTR) -> ::windows::core::Result<ITsSbTarget> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).QueryTarget)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(farmname), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbTarget>(result__) |
| } |
| pub unsafe fn QuerySessionBySessionId(&self, dwsessionid: u32, targetname: &::windows::core::BSTR) -> ::windows::core::Result<ITsSbSession> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).QuerySessionBySessionId)(::windows::core::Vtable::as_raw(self), dwsessionid, ::core::mem::transmute_copy(targetname), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbSession>(result__) |
| } |
| pub unsafe fn AddTargetToStore<'a, P0>(&self, ptarget: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbTarget>>, |
| { |
| (::windows::core::Vtable::vtable(self).AddTargetToStore)(::windows::core::Vtable::as_raw(self), ptarget.into().abi()).ok() |
| } |
| pub unsafe fn AddSessionToStore<'a, P0>(&self, psession: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbSession>>, |
| { |
| (::windows::core::Vtable::vtable(self).AddSessionToStore)(::windows::core::Vtable::as_raw(self), psession.into().abi()).ok() |
| } |
| pub unsafe fn AddEnvironmentToStore<'a, P0>(&self, penvironment: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbEnvironment>>, |
| { |
| (::windows::core::Vtable::vtable(self).AddEnvironmentToStore)(::windows::core::Vtable::as_raw(self), penvironment.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn RemoveEnvironmentFromStore<'a, P0>(&self, environmentname: &::windows::core::BSTR, bignoreowner: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| (::windows::core::Vtable::vtable(self).RemoveEnvironmentFromStore)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(environmentname), bignoreowner.into()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn EnumerateFarms(&self, pdwcount: *mut u32, pval: *mut *mut super::Com::SAFEARRAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).EnumerateFarms)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pdwcount), ::core::mem::transmute(pval)).ok() |
| } |
| pub unsafe fn QueryEnvironment(&self, environmentname: &::windows::core::BSTR) -> ::windows::core::Result<ITsSbEnvironment> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).QueryEnvironment)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(environmentname), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbEnvironment>(result__) |
| } |
| pub unsafe fn EnumerateEnvironments(&self, pdwcount: *mut u32, pval: *mut *mut ::core::option::Option<ITsSbEnvironment>) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).EnumerateEnvironments)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pdwcount), ::core::mem::transmute(pval)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn SaveTarget<'a, P0, P1>(&self, ptarget: P0, bforcewrite: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbTarget>>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| (::windows::core::Vtable::vtable(self).SaveTarget)(::windows::core::Vtable::as_raw(self), ptarget.into().abi(), bforcewrite.into()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn SaveEnvironment<'a, P0, P1>(&self, penvironment: P0, bforcewrite: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbEnvironment>>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| (::windows::core::Vtable::vtable(self).SaveEnvironment)(::windows::core::Vtable::as_raw(self), penvironment.into().abi(), bforcewrite.into()).ok() |
| } |
| pub unsafe fn SaveSession<'a, P0>(&self, psession: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbSession>>, |
| { |
| (::windows::core::Vtable::vtable(self).SaveSession)(::windows::core::Vtable::as_raw(self), psession.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn SetTargetProperty(&self, targetname: &::windows::core::BSTR, propertyname: &::windows::core::BSTR, pproperty: *const super::Com::VARIANT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTargetProperty)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(propertyname), ::core::mem::transmute(pproperty)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn SetEnvironmentProperty(&self, environmentname: &::windows::core::BSTR, propertyname: &::windows::core::BSTR, pproperty: *const super::Com::VARIANT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetEnvironmentProperty)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(environmentname), ::core::mem::transmute_copy(propertyname), ::core::mem::transmute(pproperty)).ok() |
| } |
| pub unsafe fn SetTargetState(&self, targetname: &::windows::core::BSTR, newstate: TARGET_STATE) -> ::windows::core::Result<TARGET_STATE> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).SetTargetState)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), newstate, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<TARGET_STATE>(result__) |
| } |
| pub unsafe fn SetSessionState<'a, P0>(&self, sbsession: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbSession>>, |
| { |
| (::windows::core::Vtable::vtable(self).SetSessionState)(::windows::core::Vtable::as_raw(self), sbsession.into().abi()).ok() |
| } |
| pub unsafe fn EnumerateTargets(&self, farmname: &::windows::core::BSTR, envname: &::windows::core::BSTR, sortbyfieldid: TS_SB_SORT_BY, sortybypropname: &::windows::core::BSTR, pdwcount: *mut u32, pval: *mut *mut ::core::option::Option<ITsSbTarget>) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).EnumerateTargets)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(farmname), ::core::mem::transmute_copy(envname), sortbyfieldid, ::core::mem::transmute_copy(sortybypropname), ::core::mem::transmute(pdwcount), ::core::mem::transmute(pval)).ok() |
| } |
| pub unsafe fn EnumerateSessions(&self, targetname: &::windows::core::BSTR, username: &::windows::core::BSTR, userdomain: &::windows::core::BSTR, poolname: &::windows::core::BSTR, initialprogram: &::windows::core::BSTR, psessionstate: *const TSSESSION_STATE, pdwcount: *mut u32, ppval: *mut *mut ::core::option::Option<ITsSbSession>) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).EnumerateSessions)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(username), ::core::mem::transmute_copy(userdomain), ::core::mem::transmute_copy(poolname), ::core::mem::transmute_copy(initialprogram), ::core::mem::transmute(psessionstate), ::core::mem::transmute(pdwcount), ::core::mem::transmute(ppval)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn GetFarmProperty(&self, farmname: &::windows::core::BSTR, propertyname: &::windows::core::BSTR, pvarvalue: *const super::Com::VARIANT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).GetFarmProperty)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(farmname), ::core::mem::transmute_copy(propertyname), ::core::mem::transmute(pvarvalue)).ok() |
| } |
| pub unsafe fn DeleteTarget(&self, targetname: &::windows::core::BSTR, hostname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DeleteTarget)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), ::core::mem::transmute_copy(hostname)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn SetTargetPropertyWithVersionCheck<'a, P0>(&self, ptarget: P0, propertyname: &::windows::core::BSTR, pproperty: *const super::Com::VARIANT) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbTarget>>, |
| { |
| (::windows::core::Vtable::vtable(self).SetTargetPropertyWithVersionCheck)(::windows::core::Vtable::as_raw(self), ptarget.into().abi(), ::core::mem::transmute_copy(propertyname), ::core::mem::transmute(pproperty)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub unsafe fn SetEnvironmentPropertyWithVersionCheck<'a, P0>(&self, penvironment: P0, propertyname: &::windows::core::BSTR, pproperty: *const super::Com::VARIANT) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbEnvironment>>, |
| { |
| (::windows::core::Vtable::vtable(self).SetEnvironmentPropertyWithVersionCheck)(::windows::core::Vtable::as_raw(self), penvironment.into().abi(), ::core::mem::transmute_copy(propertyname), ::core::mem::transmute(pproperty)).ok() |
| } |
| pub unsafe fn AcquireTargetLock(&self, targetname: &::windows::core::BSTR, dwtimeout: u32) -> ::windows::core::Result<::windows::core::IUnknown> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).AcquireTargetLock)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname), dwtimeout, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::IUnknown>(result__) |
| } |
| pub unsafe fn ReleaseTargetLock<'a, P0>(&self, pcontext: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ::windows::core::IUnknown>>, |
| { |
| (::windows::core::Vtable::vtable(self).ReleaseTargetLock)(::windows::core::Vtable::as_raw(self), pcontext.into().abi()).ok() |
| } |
| pub unsafe fn TestAndSetServerState(&self, poolname: &::windows::core::BSTR, serverfqdn: &::windows::core::BSTR, newstate: TARGET_STATE, teststate: TARGET_STATE) -> ::windows::core::Result<TARGET_STATE> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TestAndSetServerState)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(poolname), ::core::mem::transmute_copy(serverfqdn), newstate, teststate, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<TARGET_STATE>(result__) |
| } |
| pub unsafe fn SetServerWaitingToStart(&self, poolname: &::windows::core::BSTR, servername: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetServerWaitingToStart)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(poolname), ::core::mem::transmute_copy(servername)).ok() |
| } |
| pub unsafe fn GetServerState(&self, poolname: &::windows::core::BSTR, serverfqdn: &::windows::core::BSTR) -> ::windows::core::Result<TARGET_STATE> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetServerState)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(poolname), ::core::mem::transmute_copy(serverfqdn), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<TARGET_STATE>(result__) |
| } |
| pub unsafe fn SetServerDrainMode(&self, serverfqdn: &::windows::core::BSTR, drainmode: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetServerDrainMode)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(serverfqdn), drainmode).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbResourcePluginStore, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbResourcePluginStore { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbResourcePluginStore { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbResourcePluginStore {} |
| impl ::core::fmt::Debug for ITsSbResourcePluginStore { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbResourcePluginStore").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbResourcePluginStore { |
| type Vtable = ITsSbResourcePluginStore_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbResourcePluginStore { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x5c38f65f_bcf1_4036_a6bf_9e3cccae0b63); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbResourcePluginStore_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub QueryTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, farmname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pptarget: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub QuerySessionBySessionId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, dwsessionid: u32, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, ppsession: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub AddTargetToStore: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptarget: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub AddSessionToStore: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, psession: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub AddEnvironmentToStore: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, penvironment: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub RemoveEnvironmentFromStore: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, environmentname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bignoreowner: super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| RemoveEnvironmentFromStore: usize, |
| #[cfg(feature = "Win32_System_Com")] |
| pub EnumerateFarms: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pdwcount: *mut u32, pval: *mut *mut super::Com::SAFEARRAY) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| EnumerateFarms: usize, |
| pub QueryEnvironment: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, environmentname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, ppenvironment: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub EnumerateEnvironments: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pdwcount: *mut u32, pval: *mut *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub SaveTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptarget: *mut ::core::ffi::c_void, bforcewrite: super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| SaveTarget: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub SaveEnvironment: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, penvironment: *mut ::core::ffi::c_void, bforcewrite: super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| SaveEnvironment: usize, |
| pub SaveSession: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, psession: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub SetTargetProperty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pproperty: *const ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| SetTargetProperty: usize, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub SetEnvironmentProperty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, environmentname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pproperty: *const ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| SetEnvironmentProperty: usize, |
| pub SetTargetState: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, newstate: TARGET_STATE, poldstate: *mut TARGET_STATE) -> ::windows::core::HRESULT, |
| pub SetSessionState: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sbsession: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub EnumerateTargets: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, farmname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, envname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, sortbyfieldid: TS_SB_SORT_BY, sortybypropname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pdwcount: *mut u32, pval: *mut *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub EnumerateSessions: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, username: ::core::mem::ManuallyDrop<::windows::core::BSTR>, userdomain: ::core::mem::ManuallyDrop<::windows::core::BSTR>, poolname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, initialprogram: ::core::mem::ManuallyDrop<::windows::core::BSTR>, psessionstate: *const TSSESSION_STATE, pdwcount: *mut u32, ppval: *mut *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub GetFarmProperty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, farmname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pvarvalue: *const ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| GetFarmProperty: usize, |
| pub DeleteTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, hostname: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub SetTargetPropertyWithVersionCheck: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptarget: *mut ::core::ffi::c_void, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pproperty: *const ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| SetTargetPropertyWithVersionCheck: usize, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole"))] |
| pub SetEnvironmentPropertyWithVersionCheck: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, penvironment: *mut ::core::ffi::c_void, propertyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pproperty: *const ::core::mem::ManuallyDrop<super::Com::VARIANT>) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com", feature = "Win32_System_Ole")))] |
| SetEnvironmentPropertyWithVersionCheck: usize, |
| pub AcquireTargetLock: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, dwtimeout: u32, ppcontext: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub ReleaseTargetLock: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pcontext: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub TestAndSetServerState: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, poolname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, serverfqdn: ::core::mem::ManuallyDrop<::windows::core::BSTR>, newstate: TARGET_STATE, teststate: TARGET_STATE, pinitstate: *mut TARGET_STATE) -> ::windows::core::HRESULT, |
| pub SetServerWaitingToStart: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, poolname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, servername: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub GetServerState: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, poolname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, serverfqdn: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pstate: *mut TARGET_STATE) -> ::windows::core::HRESULT, |
| pub SetServerDrainMode: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, serverfqdn: ::core::mem::ManuallyDrop<::windows::core::BSTR>, drainmode: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbServiceNotification(::windows::core::IUnknown); |
| impl ITsSbServiceNotification { |
| pub unsafe fn NotifyServiceFailure(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifyServiceFailure)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn NotifyServiceSuccess(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifyServiceSuccess)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbServiceNotification, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbServiceNotification { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbServiceNotification { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbServiceNotification {} |
| impl ::core::fmt::Debug for ITsSbServiceNotification { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbServiceNotification").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbServiceNotification { |
| type Vtable = ITsSbServiceNotification_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbServiceNotification { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x86cb68ae_86e0_4f57_8a64_bb7406bc5550); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbServiceNotification_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub NotifyServiceFailure: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub NotifyServiceSuccess: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbSession(::windows::core::IUnknown); |
| impl ITsSbSession { |
| pub unsafe fn SessionId(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).SessionId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| pub unsafe fn TargetName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTargetName(&self, targetname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTargetName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(targetname)).ok() |
| } |
| pub unsafe fn Username(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Username)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn Domain(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Domain)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn State(&self) -> ::windows::core::Result<TSSESSION_STATE> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).State)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<TSSESSION_STATE>(result__) |
| } |
| pub unsafe fn SetState(&self, state: TSSESSION_STATE) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetState)(::windows::core::Vtable::as_raw(self), state).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn CreateTime(&self) -> ::windows::core::Result<super::super::Foundation::FILETIME> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::FILETIME>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn SetCreateTime(&self, time: super::super::Foundation::FILETIME) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetCreateTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(time)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn DisconnectTime(&self) -> ::windows::core::Result<super::super::Foundation::FILETIME> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).DisconnectTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::FILETIME>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn SetDisconnectTime(&self, time: super::super::Foundation::FILETIME) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetDisconnectTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(time)).ok() |
| } |
| pub unsafe fn InitialProgram(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).InitialProgram)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetInitialProgram(&self, application: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetInitialProgram)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(application)).ok() |
| } |
| pub unsafe fn ClientDisplay(&self) -> ::windows::core::Result<CLIENT_DISPLAY> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).ClientDisplay)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<CLIENT_DISPLAY>(result__) |
| } |
| pub unsafe fn SetClientDisplay(&self, pclientdisplay: CLIENT_DISPLAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetClientDisplay)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pclientdisplay)).ok() |
| } |
| pub unsafe fn ProtocolType(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).ProtocolType)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| pub unsafe fn SetProtocolType(&self, val: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetProtocolType)(::windows::core::Vtable::as_raw(self), val).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbSession, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbSession { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbSession { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbSession {} |
| impl ::core::fmt::Debug for ITsSbSession { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbSession").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbSession { |
| type Vtable = ITsSbSession_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbSession { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xd453aac7_b1d8_4c5e_ba34_9afb4c8c5510); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbSession_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub SessionId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut u32) -> ::windows::core::HRESULT, |
| pub TargetName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTargetName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub Username: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, username: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub Domain: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, domain: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub State: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pstate: *mut TSSESSION_STATE) -> ::windows::core::HRESULT, |
| pub SetState: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, state: TSSESSION_STATE) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub CreateTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptime: *mut super::super::Foundation::FILETIME) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| CreateTime: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub SetCreateTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, time: super::super::Foundation::FILETIME) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| SetCreateTime: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub DisconnectTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptime: *mut super::super::Foundation::FILETIME) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| DisconnectTime: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub SetDisconnectTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, time: super::super::Foundation::FILETIME) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| SetDisconnectTime: usize, |
| pub InitialProgram: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, app: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetInitialProgram: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, application: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub ClientDisplay: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pclientdisplay: *mut CLIENT_DISPLAY) -> ::windows::core::HRESULT, |
| pub SetClientDisplay: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pclientdisplay: CLIENT_DISPLAY) -> ::windows::core::HRESULT, |
| pub ProtocolType: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut u32) -> ::windows::core::HRESULT, |
| pub SetProtocolType: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, val: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbTarget(::windows::core::IUnknown); |
| impl ITsSbTarget { |
| pub unsafe fn TargetName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTargetName(&self, val: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTargetName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(val)).ok() |
| } |
| pub unsafe fn FarmName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).FarmName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetFarmName(&self, val: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetFarmName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(val)).ok() |
| } |
| pub unsafe fn TargetFQDN(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetFQDN)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTargetFQDN(&self, val: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTargetFQDN)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(val)).ok() |
| } |
| pub unsafe fn TargetNetbios(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetNetbios)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetTargetNetbios(&self, val: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTargetNetbios)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(val)).ok() |
| } |
| pub unsafe fn get_IpAddresses(&self, sockaddr: *mut TSSD_ConnectionPoint, numaddresses: *mut u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).get_IpAddresses)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sockaddr), ::core::mem::transmute(numaddresses)).ok() |
| } |
| pub unsafe fn put_IpAddresses(&self, sockaddr: &[TSSD_ConnectionPoint]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).put_IpAddresses)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sockaddr.as_ptr()), sockaddr.len() as _).ok() |
| } |
| pub unsafe fn TargetState(&self) -> ::windows::core::Result<TARGET_STATE> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetState)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<TARGET_STATE>(result__) |
| } |
| pub unsafe fn SetTargetState(&self, state: TARGET_STATE) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTargetState)(::windows::core::Vtable::as_raw(self), state).ok() |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn TargetPropertySet(&self) -> ::windows::core::Result<ITsSbTargetPropertySet> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetPropertySet)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<ITsSbTargetPropertySet>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn SetTargetPropertySet<'a, P0>(&self, pval: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbTargetPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).SetTargetPropertySet)(::windows::core::Vtable::as_raw(self), pval.into().abi()).ok() |
| } |
| pub unsafe fn EnvironmentName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).EnvironmentName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetEnvironmentName(&self, val: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetEnvironmentName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(val)).ok() |
| } |
| pub unsafe fn NumSessions(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).NumSessions)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| pub unsafe fn NumPendingConnections(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).NumPendingConnections)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| pub unsafe fn TargetLoad(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetLoad)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbTarget, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbTarget { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbTarget { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbTarget {} |
| impl ::core::fmt::Debug for ITsSbTarget { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbTarget").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbTarget { |
| type Vtable = ITsSbTarget_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbTarget { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x16616ecc_272d_411d_b324_126893033856); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbTarget_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub TargetName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTargetName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, val: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub FarmName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetFarmName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, val: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub TargetFQDN: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetfqdnname: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTargetFQDN: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, val: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub TargetNetbios: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, targetnetbiosname: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetTargetNetbios: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, val: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub get_IpAddresses: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sockaddr: *mut TSSD_ConnectionPoint, numaddresses: *mut u32) -> ::windows::core::HRESULT, |
| pub put_IpAddresses: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sockaddr: *const TSSD_ConnectionPoint, numaddresses: u32) -> ::windows::core::HRESULT, |
| pub TargetState: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pstate: *mut TARGET_STATE) -> ::windows::core::HRESULT, |
| pub SetTargetState: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, state: TARGET_STATE) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub TargetPropertySet: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pppropertyset: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| TargetPropertySet: usize, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub SetTargetPropertySet: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| SetTargetPropertySet: usize, |
| pub EnvironmentName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub SetEnvironmentName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, val: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub NumSessions: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnumsessions: *mut u32) -> ::windows::core::HRESULT, |
| pub NumPendingConnections: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnumpendingconnections: *mut u32) -> ::windows::core::HRESULT, |
| pub TargetLoad: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptargetload: *mut u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(transparent)] |
| pub struct ITsSbTargetPropertySet(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ITsSbTargetPropertySet { |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Read<'a, P0, P1>(&self, pszpropname: P0, pvar: *mut super::Com::VARIANT, perrorlog: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, super::Com::IErrorLog>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.base__.Read)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar), perrorlog.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com_StructuredStorage\"`, `\"Win32_System_Ole\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com_StructuredStorage", feature = "Win32_System_Ole"))] |
| pub unsafe fn Write<'a, P0>(&self, pszpropname: P0, pvar: *const super::Com::VARIANT) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.base__.Write)(::windows::core::Vtable::as_raw(self), pszpropname.into(), ::core::mem::transmute(pvar)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| ::windows::core::interface_hierarchy!(ITsSbTargetPropertySet, ::windows::core::IUnknown, super::Com::StructuredStorage::IPropertyBag, ITsSbPropertySet); |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::clone::Clone for ITsSbTargetPropertySet { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::PartialEq for ITsSbTargetPropertySet { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::cmp::Eq for ITsSbTargetPropertySet {} |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| impl ::core::fmt::Debug for ITsSbTargetPropertySet { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbTargetPropertySet").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Vtable for ITsSbTargetPropertySet { |
| type Vtable = ITsSbTargetPropertySet_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| unsafe impl ::windows::core::Interface for ITsSbTargetPropertySet { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xf7bda5d6_994c_4e11_a079_2763b61830ac); |
| } |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbTargetPropertySet_Vtbl { |
| pub base__: ITsSbPropertySet_Vtbl, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbTaskInfo(::windows::core::IUnknown); |
| impl ITsSbTaskInfo { |
| pub unsafe fn TargetId(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).TargetId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn StartTime(&self) -> ::windows::core::Result<super::super::Foundation::FILETIME> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).StartTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::FILETIME>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn EndTime(&self) -> ::windows::core::Result<super::super::Foundation::FILETIME> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).EndTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::FILETIME>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn Deadline(&self) -> ::windows::core::Result<super::super::Foundation::FILETIME> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Deadline)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::FILETIME>(result__) |
| } |
| pub unsafe fn Identifier(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Identifier)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn Label(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Label)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn Context(&self) -> ::windows::core::Result<*mut super::Com::SAFEARRAY> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Context)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<*mut super::Com::SAFEARRAY>(result__) |
| } |
| pub unsafe fn Plugin(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Plugin)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn Status(&self) -> ::windows::core::Result<RDV_TASK_STATUS> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Status)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<RDV_TASK_STATUS>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbTaskInfo, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ITsSbTaskInfo { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbTaskInfo { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbTaskInfo {} |
| impl ::core::fmt::Debug for ITsSbTaskInfo { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbTaskInfo").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbTaskInfo { |
| type Vtable = ITsSbTaskInfo_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbTaskInfo { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x523d1083_89be_48dd_99ea_04e82ffa7265); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbTaskInfo_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub TargetId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pname: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub StartTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pstarttime: *mut super::super::Foundation::FILETIME) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| StartTime: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub EndTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pendtime: *mut super::super::Foundation::FILETIME) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| EndTime: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub Deadline: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pdeadline: *mut super::super::Foundation::FILETIME) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| Deadline: usize, |
| pub Identifier: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pidentifier: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub Label: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, plabel: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com")] |
| pub Context: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pcontext: *mut *mut super::Com::SAFEARRAY) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| Context: usize, |
| pub Plugin: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pplugin: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub Status: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pstatus: *mut RDV_TASK_STATUS) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbTaskPlugin(::windows::core::IUnknown); |
| impl ITsSbTaskPlugin { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn Initialize<'a, P0, P1, P2>(&self, pprovider: P0, pnotifysink: P1, ppropertyset: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbProvider>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginNotifySink>>, |
| P2: ::std::convert::Into<::windows::core::InParam<'a, ITsSbPluginPropertySet>>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.Initialize)(::windows::core::Vtable::as_raw(self), pprovider.into().abi(), pnotifysink.into().abi(), ppropertyset.into().abi()).ok() |
| } |
| pub unsafe fn Terminate(&self, hr: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.Terminate)(::windows::core::Vtable::as_raw(self), hr).ok() |
| } |
| pub unsafe fn InitializeTaskPlugin<'a, P0>(&self, pitssbtaskpluginnotifysink: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ITsSbTaskPluginNotifySink>>, |
| { |
| (::windows::core::Vtable::vtable(self).InitializeTaskPlugin)(::windows::core::Vtable::as_raw(self), pitssbtaskpluginnotifysink.into().abi()).ok() |
| } |
| pub unsafe fn SetTaskQueue(&self, pszhostname: &::windows::core::BSTR, pitssbtaskinfo: &[::core::option::Option<ITsSbTaskInfo>]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetTaskQueue)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(pszhostname), pitssbtaskinfo.len() as _, ::core::mem::transmute(pitssbtaskinfo.as_ptr())).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbTaskPlugin, ::windows::core::IUnknown, ITsSbPlugin); |
| impl ::core::clone::Clone for ITsSbTaskPlugin { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbTaskPlugin { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbTaskPlugin {} |
| impl ::core::fmt::Debug for ITsSbTaskPlugin { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbTaskPlugin").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbTaskPlugin { |
| type Vtable = ITsSbTaskPlugin_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbTaskPlugin { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xfa22ef0f_8705_41be_93bc_44bdbcf1c9c4); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbTaskPlugin_Vtbl { |
| pub base__: ITsSbPlugin_Vtbl, |
| pub InitializeTaskPlugin: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pitssbtaskpluginnotifysink: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub SetTaskQueue: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pszhostname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, sbtaskinfosize: u32, pitssbtaskinfo: *const *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ITsSbTaskPluginNotifySink(::windows::core::IUnknown); |
| impl ITsSbTaskPluginNotifySink { |
| pub unsafe fn OnError(&self, hrerror: ::windows::core::HRESULT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnError)(::windows::core::Vtable::as_raw(self), hrerror).ok() |
| } |
| pub unsafe fn OnReportStatus(&self, messagetype: CLIENT_MESSAGE_TYPE, messageid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnReportStatus)(::windows::core::Vtable::as_raw(self), messagetype, messageid).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com"))] |
| pub unsafe fn OnSetTaskTime(&self, sztargetname: &::windows::core::BSTR, taskstarttime: super::super::Foundation::FILETIME, taskendtime: super::super::Foundation::FILETIME, taskdeadline: super::super::Foundation::FILETIME, sztasklabel: &::windows::core::BSTR, sztaskidentifier: &::windows::core::BSTR, sztaskplugin: &::windows::core::BSTR, dwtaskstatus: u32, sacontext: *const super::Com::SAFEARRAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnSetTaskTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(sztargetname), ::core::mem::transmute(taskstarttime), ::core::mem::transmute(taskendtime), ::core::mem::transmute(taskdeadline), ::core::mem::transmute_copy(sztasklabel), ::core::mem::transmute_copy(sztaskidentifier), ::core::mem::transmute_copy(sztaskplugin), dwtaskstatus, ::core::mem::transmute(sacontext)).ok() |
| } |
| pub unsafe fn OnDeleteTaskTime(&self, sztargetname: &::windows::core::BSTR, sztaskidentifier: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnDeleteTaskTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(sztargetname), ::core::mem::transmute_copy(sztaskidentifier)).ok() |
| } |
| pub unsafe fn OnUpdateTaskStatus(&self, sztargetname: &::windows::core::BSTR, taskidentifier: &::windows::core::BSTR, taskstatus: RDV_TASK_STATUS) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnUpdateTaskStatus)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(sztargetname), ::core::mem::transmute_copy(taskidentifier), taskstatus).ok() |
| } |
| pub unsafe fn OnReportTasks(&self, szhostname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnReportTasks)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(szhostname)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ITsSbTaskPluginNotifySink, ::windows::core::IUnknown, ITsSbBaseNotifySink); |
| impl ::core::clone::Clone for ITsSbTaskPluginNotifySink { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ITsSbTaskPluginNotifySink { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ITsSbTaskPluginNotifySink {} |
| impl ::core::fmt::Debug for ITsSbTaskPluginNotifySink { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ITsSbTaskPluginNotifySink").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ITsSbTaskPluginNotifySink { |
| type Vtable = ITsSbTaskPluginNotifySink_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ITsSbTaskPluginNotifySink { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x6aaf899e_c2ec_45ee_aa37_45e60895261a); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ITsSbTaskPluginNotifySink_Vtbl { |
| pub base__: ITsSbBaseNotifySink_Vtbl, |
| #[cfg(all(feature = "Win32_Foundation", feature = "Win32_System_Com"))] |
| pub OnSetTaskTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sztargetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, taskstarttime: super::super::Foundation::FILETIME, taskendtime: super::super::Foundation::FILETIME, taskdeadline: super::super::Foundation::FILETIME, sztasklabel: ::core::mem::ManuallyDrop<::windows::core::BSTR>, sztaskidentifier: ::core::mem::ManuallyDrop<::windows::core::BSTR>, sztaskplugin: ::core::mem::ManuallyDrop<::windows::core::BSTR>, dwtaskstatus: u32, sacontext: *const super::Com::SAFEARRAY) -> ::windows::core::HRESULT, |
| #[cfg(not(all(feature = "Win32_Foundation", feature = "Win32_System_Com")))] |
| OnSetTaskTime: usize, |
| pub OnDeleteTaskTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sztargetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, sztaskidentifier: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub OnUpdateTaskStatus: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sztargetname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, taskidentifier: ::core::mem::ManuallyDrop<::windows::core::BSTR>, taskstatus: RDV_TASK_STATUS) -> ::windows::core::HRESULT, |
| pub OnReportTasks: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, szhostname: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsEnhancedFastReconnectArbitrator(::windows::core::IUnknown); |
| impl IWRdsEnhancedFastReconnectArbitrator { |
| pub unsafe fn GetSessionForEnhancedFastReconnect(&self, psessionidarray: *const i32, dwsessioncount: u32) -> ::windows::core::Result<i32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetSessionForEnhancedFastReconnect)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(psessionidarray), dwsessioncount, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i32>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsEnhancedFastReconnectArbitrator, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsEnhancedFastReconnectArbitrator { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsEnhancedFastReconnectArbitrator { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsEnhancedFastReconnectArbitrator {} |
| impl ::core::fmt::Debug for IWRdsEnhancedFastReconnectArbitrator { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsEnhancedFastReconnectArbitrator").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsEnhancedFastReconnectArbitrator { |
| type Vtable = IWRdsEnhancedFastReconnectArbitrator_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsEnhancedFastReconnectArbitrator { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x5718ae9b_47f2_499f_b634_d8175bd51131); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsEnhancedFastReconnectArbitrator_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetSessionForEnhancedFastReconnect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, psessionidarray: *const i32, dwsessioncount: u32, presultsessionid: *mut i32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsGraphicsChannel(::windows::core::IUnknown); |
| impl IWRdsGraphicsChannel { |
| pub unsafe fn Write<'a, P0>(&self, cbsize: u32, pbuffer: *const u8, pcontext: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ::windows::core::IUnknown>>, |
| { |
| (::windows::core::Vtable::vtable(self).Write)(::windows::core::Vtable::as_raw(self), cbsize, ::core::mem::transmute(pbuffer), pcontext.into().abi()).ok() |
| } |
| pub unsafe fn Close(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Close)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn Open<'a, P0, P1>(&self, pchannelevents: P0, popencontext: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWRdsGraphicsChannelEvents>>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, ::windows::core::IUnknown>>, |
| { |
| (::windows::core::Vtable::vtable(self).Open)(::windows::core::Vtable::as_raw(self), pchannelevents.into().abi(), popencontext.into().abi()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsGraphicsChannel, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsGraphicsChannel { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsGraphicsChannel { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsGraphicsChannel {} |
| impl ::core::fmt::Debug for IWRdsGraphicsChannel { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsGraphicsChannel").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsGraphicsChannel { |
| type Vtable = IWRdsGraphicsChannel_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsGraphicsChannel { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x684b7a0b_edff_43ad_d5a2_4a8d5388f401); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsGraphicsChannel_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Write: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, cbsize: u32, pbuffer: *const u8, pcontext: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Close: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Open: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pchannelevents: *mut ::core::ffi::c_void, popencontext: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsGraphicsChannelEvents(::windows::core::IUnknown); |
| impl IWRdsGraphicsChannelEvents { |
| pub unsafe fn OnDataReceived(&self, cbsize: u32, pbuffer: *const u8) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnDataReceived)(::windows::core::Vtable::as_raw(self), cbsize, ::core::mem::transmute(pbuffer)).ok() |
| } |
| pub unsafe fn OnClose(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnClose)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn OnChannelOpened<'a, P0>(&self, openresult: ::windows::core::HRESULT, popencontext: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ::windows::core::IUnknown>>, |
| { |
| (::windows::core::Vtable::vtable(self).OnChannelOpened)(::windows::core::Vtable::as_raw(self), openresult, popencontext.into().abi()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn OnDataSent<'a, P0, P1>(&self, pwritecontext: P0, bcancelled: P1, pbuffer: *const u8, cbbuffer: u32) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ::windows::core::IUnknown>>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| (::windows::core::Vtable::vtable(self).OnDataSent)(::windows::core::Vtable::as_raw(self), pwritecontext.into().abi(), bcancelled.into(), ::core::mem::transmute(pbuffer), cbbuffer).ok() |
| } |
| pub unsafe fn OnMetricsUpdate(&self, bandwidth: u32, rtt: u32, lastsentbyteindex: u64) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnMetricsUpdate)(::windows::core::Vtable::as_raw(self), bandwidth, rtt, lastsentbyteindex).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsGraphicsChannelEvents, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsGraphicsChannelEvents { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsGraphicsChannelEvents { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsGraphicsChannelEvents {} |
| impl ::core::fmt::Debug for IWRdsGraphicsChannelEvents { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsGraphicsChannelEvents").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsGraphicsChannelEvents { |
| type Vtable = IWRdsGraphicsChannelEvents_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsGraphicsChannelEvents { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x67f2368c_d674_4fae_66a5_d20628a640d2); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsGraphicsChannelEvents_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnDataReceived: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, cbsize: u32, pbuffer: *const u8) -> ::windows::core::HRESULT, |
| pub OnClose: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub OnChannelOpened: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, openresult: ::windows::core::HRESULT, popencontext: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub OnDataSent: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pwritecontext: *mut ::core::ffi::c_void, bcancelled: super::super::Foundation::BOOL, pbuffer: *const u8, cbbuffer: u32) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| OnDataSent: usize, |
| pub OnMetricsUpdate: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bandwidth: u32, rtt: u32, lastsentbyteindex: u64) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsGraphicsChannelManager(::windows::core::IUnknown); |
| impl IWRdsGraphicsChannelManager { |
| pub unsafe fn CreateChannel(&self, pszchannelname: *const u8, channeltype: WRdsGraphicsChannelType) -> ::windows::core::Result<IWRdsGraphicsChannel> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateChannel)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pszchannelname), channeltype, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWRdsGraphicsChannel>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsGraphicsChannelManager, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsGraphicsChannelManager { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsGraphicsChannelManager { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsGraphicsChannelManager {} |
| impl ::core::fmt::Debug for IWRdsGraphicsChannelManager { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsGraphicsChannelManager").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsGraphicsChannelManager { |
| type Vtable = IWRdsGraphicsChannelManager_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsGraphicsChannelManager { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x0fd57159_e83e_476a_a8b9_4a7976e71e18); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsGraphicsChannelManager_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub CreateChannel: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pszchannelname: *const u8, channeltype: WRdsGraphicsChannelType, ppvirtualchannel: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolConnection(::windows::core::IUnknown); |
| impl IWRdsProtocolConnection { |
| pub unsafe fn GetLogonErrorRedirector(&self) -> ::windows::core::Result<IWRdsProtocolLogonErrorRedirector> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetLogonErrorRedirector)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWRdsProtocolLogonErrorRedirector>(result__) |
| } |
| pub unsafe fn AcceptConnection(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).AcceptConnection)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetClientData(&self) -> ::windows::core::Result<WTS_CLIENT_DATA> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetClientData)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_CLIENT_DATA>(result__) |
| } |
| pub unsafe fn GetClientMonitorData(&self, pnummonitors: *mut u32, pprimarymonitor: *mut u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).GetClientMonitorData)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pnummonitors), ::core::mem::transmute(pprimarymonitor)).ok() |
| } |
| pub unsafe fn GetUserCredentials(&self) -> ::windows::core::Result<WTS_USER_CREDENTIAL> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetUserCredentials)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_USER_CREDENTIAL>(result__) |
| } |
| pub unsafe fn GetLicenseConnection(&self) -> ::windows::core::Result<IWRdsProtocolLicenseConnection> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetLicenseConnection)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWRdsProtocolLicenseConnection>(result__) |
| } |
| pub unsafe fn AuthenticateClientToSession(&self) -> ::windows::core::Result<WTS_SESSION_ID> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).AuthenticateClientToSession)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_SESSION_ID>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn NotifySessionId<'a, P0>(&self, sessionid: *const WTS_SESSION_ID, sessionhandle: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| { |
| (::windows::core::Vtable::vtable(self).NotifySessionId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sessionid), sessionhandle.into()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetInputHandles(&self, pkeyboardhandle: *mut super::super::Foundation::HANDLE_PTR, pmousehandle: *mut super::super::Foundation::HANDLE_PTR, pbeephandle: *mut super::super::Foundation::HANDLE_PTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).GetInputHandles)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pkeyboardhandle), ::core::mem::transmute(pmousehandle), ::core::mem::transmute(pbeephandle)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetVideoHandle(&self) -> ::windows::core::Result<super::super::Foundation::HANDLE_PTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetVideoHandle)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::super::Foundation::HANDLE_PTR>(result__) |
| } |
| pub unsafe fn ConnectNotify(&self, sessionid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ConnectNotify)(::windows::core::Vtable::as_raw(self), sessionid).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn IsUserAllowedToLogon<'a, P0, P1, P2>(&self, sessionid: u32, usertoken: P0, pdomainname: P1, pusername: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).IsUserAllowedToLogon)(::windows::core::Vtable::as_raw(self), sessionid, usertoken.into(), pdomainname.into(), pusername.into()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn SessionArbitrationEnumeration<'a, P0, P1>(&self, husertoken: P0, bsinglesessionperuserenabled: P1, psessionidarray: *mut u32, pdwsessionidentifiercount: *mut u32) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| (::windows::core::Vtable::vtable(self).SessionArbitrationEnumeration)(::windows::core::Vtable::as_raw(self), husertoken.into(), bsinglesessionperuserenabled.into(), ::core::mem::transmute(psessionidarray), ::core::mem::transmute(pdwsessionidentifiercount)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn LogonNotify<'a, P0, P1, P2>(&self, hclienttoken: P0, wszusername: P1, wszdomainname: P2, sessionid: *const WTS_SESSION_ID, pwrdsconnectionsettings: *mut WRDS_CONNECTION_SETTINGS) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).LogonNotify)(::windows::core::Vtable::as_raw(self), hclienttoken.into(), wszusername.into(), wszdomainname.into(), ::core::mem::transmute(sessionid), ::core::mem::transmute(pwrdsconnectionsettings)).ok() |
| } |
| pub unsafe fn PreDisconnect(&self, disconnectreason: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).PreDisconnect)(::windows::core::Vtable::as_raw(self), disconnectreason).ok() |
| } |
| pub unsafe fn DisconnectNotify(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DisconnectNotify)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn Close(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Close)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn GetProtocolStatus(&self) -> ::windows::core::Result<WTS_PROTOCOL_STATUS> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetProtocolStatus)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_PROTOCOL_STATUS>(result__) |
| } |
| pub unsafe fn GetLastInputTime(&self) -> ::windows::core::Result<u64> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetLastInputTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u64>(result__) |
| } |
| pub unsafe fn SetErrorInfo(&self, ulerror: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetErrorInfo)(::windows::core::Vtable::as_raw(self), ulerror).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn CreateVirtualChannel<'a, P0, P1>(&self, szendpointname: P0, bstatic: P1, requestedpriority: u32) -> ::windows::core::Result<usize> |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateVirtualChannel)(::windows::core::Vtable::as_raw(self), szendpointname.into(), bstatic.into(), requestedpriority, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<usize>(result__) |
| } |
| pub unsafe fn QueryProperty(&self, querytype: ::windows::core::GUID, ppropertyentriesin: &[WTS_PROPERTY_VALUE], ppropertyentriesout: &mut [WTS_PROPERTY_VALUE]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).QueryProperty)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(querytype), ppropertyentriesin.len() as _, ppropertyentriesout.len() as _, ::core::mem::transmute(ppropertyentriesin.as_ptr()), ::core::mem::transmute(ppropertyentriesout.as_ptr())).ok() |
| } |
| pub unsafe fn GetShadowConnection(&self) -> ::windows::core::Result<IWRdsProtocolShadowConnection> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetShadowConnection)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWRdsProtocolShadowConnection>(result__) |
| } |
| pub unsafe fn NotifyCommandProcessCreated(&self, sessionid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifyCommandProcessCreated)(::windows::core::Vtable::as_raw(self), sessionid).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolConnection, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolConnection { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolConnection { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolConnection {} |
| impl ::core::fmt::Debug for IWRdsProtocolConnection { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolConnection").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolConnection { |
| type Vtable = IWRdsProtocolConnection_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolConnection { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x324ed94f_fdaf_4ff6_81a8_42abe755830b); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolConnection_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetLogonErrorRedirector: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pplogonerrorredir: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub AcceptConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetClientData: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pclientdata: *mut WTS_CLIENT_DATA) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetClientData: usize, |
| pub GetClientMonitorData: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pnummonitors: *mut u32, pprimarymonitor: *mut u32) -> ::windows::core::HRESULT, |
| pub GetUserCredentials: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pusercreds: *mut WTS_USER_CREDENTIAL) -> ::windows::core::HRESULT, |
| pub GetLicenseConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pplicenseconnection: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub AuthenticateClientToSession: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *mut WTS_SESSION_ID) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub NotifySessionId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *const WTS_SESSION_ID, sessionhandle: super::super::Foundation::HANDLE_PTR) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| NotifySessionId: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetInputHandles: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pkeyboardhandle: *mut super::super::Foundation::HANDLE_PTR, pmousehandle: *mut super::super::Foundation::HANDLE_PTR, pbeephandle: *mut super::super::Foundation::HANDLE_PTR) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetInputHandles: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetVideoHandle: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pvideohandle: *mut super::super::Foundation::HANDLE_PTR) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetVideoHandle: usize, |
| pub ConnectNotify: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub IsUserAllowedToLogon: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: u32, usertoken: super::super::Foundation::HANDLE_PTR, pdomainname: ::windows::core::PCWSTR, pusername: ::windows::core::PCWSTR) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| IsUserAllowedToLogon: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub SessionArbitrationEnumeration: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, husertoken: super::super::Foundation::HANDLE_PTR, bsinglesessionperuserenabled: super::super::Foundation::BOOL, psessionidarray: *mut u32, pdwsessionidentifiercount: *mut u32) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| SessionArbitrationEnumeration: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub LogonNotify: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, hclienttoken: super::super::Foundation::HANDLE_PTR, wszusername: ::windows::core::PCWSTR, wszdomainname: ::windows::core::PCWSTR, sessionid: *const WTS_SESSION_ID, pwrdsconnectionsettings: *mut WRDS_CONNECTION_SETTINGS) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| LogonNotify: usize, |
| pub PreDisconnect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, disconnectreason: u32) -> ::windows::core::HRESULT, |
| pub DisconnectNotify: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Close: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub GetProtocolStatus: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pprotocolstatus: *mut WTS_PROTOCOL_STATUS) -> ::windows::core::HRESULT, |
| pub GetLastInputTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, plastinputtime: *mut u64) -> ::windows::core::HRESULT, |
| pub SetErrorInfo: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ulerror: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub CreateVirtualChannel: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, szendpointname: ::windows::core::PCSTR, bstatic: super::super::Foundation::BOOL, requestedpriority: u32, phchannel: *mut usize) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| CreateVirtualChannel: usize, |
| pub QueryProperty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, querytype: ::windows::core::GUID, ulnumentriesin: u32, ulnumentriesout: u32, ppropertyentriesin: *const WTS_PROPERTY_VALUE, ppropertyentriesout: *mut WTS_PROPERTY_VALUE) -> ::windows::core::HRESULT, |
| pub GetShadowConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppshadowconnection: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub NotifyCommandProcessCreated: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolConnectionCallback(::windows::core::IUnknown); |
| impl IWRdsProtocolConnectionCallback { |
| pub unsafe fn OnReady(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnReady)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn BrokenConnection(&self, reason: u32, source: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).BrokenConnection)(::windows::core::Vtable::as_raw(self), reason, source).ok() |
| } |
| pub unsafe fn StopScreenUpdates(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StopScreenUpdates)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn RedrawWindow(&self, rect: *const WTS_SMALL_RECT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RedrawWindow)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(rect)).ok() |
| } |
| pub unsafe fn GetConnectionId(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetConnectionId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolConnectionCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolConnectionCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolConnectionCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolConnectionCallback {} |
| impl ::core::fmt::Debug for IWRdsProtocolConnectionCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolConnectionCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolConnectionCallback { |
| type Vtable = IWRdsProtocolConnectionCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolConnectionCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xf1d70332_d070_4ef1_a088_78313536c2d6); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolConnectionCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnReady: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub BrokenConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, reason: u32, source: u32) -> ::windows::core::HRESULT, |
| pub StopScreenUpdates: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub RedrawWindow: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, rect: *const WTS_SMALL_RECT) -> ::windows::core::HRESULT, |
| pub GetConnectionId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pconnectionid: *mut u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolConnectionSettings(::windows::core::IUnknown); |
| impl IWRdsProtocolConnectionSettings { |
| pub unsafe fn SetConnectionSetting(&self, propertyid: ::windows::core::GUID, ppropertyentriesin: *const WTS_PROPERTY_VALUE) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetConnectionSetting)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(propertyid), ::core::mem::transmute(ppropertyentriesin)).ok() |
| } |
| pub unsafe fn GetConnectionSetting(&self, propertyid: ::windows::core::GUID) -> ::windows::core::Result<WTS_PROPERTY_VALUE> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetConnectionSetting)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(propertyid), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_PROPERTY_VALUE>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolConnectionSettings, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolConnectionSettings { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolConnectionSettings { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolConnectionSettings {} |
| impl ::core::fmt::Debug for IWRdsProtocolConnectionSettings { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolConnectionSettings").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolConnectionSettings { |
| type Vtable = IWRdsProtocolConnectionSettings_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolConnectionSettings { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x83fcf5d3_f6f4_ea94_9cd2_32f280e1e510); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolConnectionSettings_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub SetConnectionSetting: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, propertyid: ::windows::core::GUID, ppropertyentriesin: *const WTS_PROPERTY_VALUE) -> ::windows::core::HRESULT, |
| pub GetConnectionSetting: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, propertyid: ::windows::core::GUID, ppropertyentriesout: *mut WTS_PROPERTY_VALUE) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolLicenseConnection(::windows::core::IUnknown); |
| impl IWRdsProtocolLicenseConnection { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn RequestLicensingCapabilities(&self, pplicensecapabilities: *mut WTS_LICENSE_CAPABILITIES, pcblicensecapabilities: *mut u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RequestLicensingCapabilities)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pplicensecapabilities), ::core::mem::transmute(pcblicensecapabilities)).ok() |
| } |
| pub unsafe fn SendClientLicense(&self, pclientlicense: &[u8]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SendClientLicense)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pclientlicense.as_ptr()), pclientlicense.len() as _).ok() |
| } |
| pub unsafe fn RequestClientLicense(&self, reserve1: &[u8], ppclientlicense: *mut u8, pcbclientlicense: *mut u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RequestClientLicense)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(reserve1.as_ptr()), reserve1.len() as _, ::core::mem::transmute(ppclientlicense), ::core::mem::transmute(pcbclientlicense)).ok() |
| } |
| pub unsafe fn ProtocolComplete(&self, ulcomplete: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ProtocolComplete)(::windows::core::Vtable::as_raw(self), ulcomplete).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolLicenseConnection, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolLicenseConnection { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolLicenseConnection { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolLicenseConnection {} |
| impl ::core::fmt::Debug for IWRdsProtocolLicenseConnection { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolLicenseConnection").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolLicenseConnection { |
| type Vtable = IWRdsProtocolLicenseConnection_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolLicenseConnection { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x1d6a145f_d095_4424_957a_407fae822d84); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolLicenseConnection_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub RequestLicensingCapabilities: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pplicensecapabilities: *mut WTS_LICENSE_CAPABILITIES, pcblicensecapabilities: *mut u32) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| RequestLicensingCapabilities: usize, |
| pub SendClientLicense: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pclientlicense: *const u8, cbclientlicense: u32) -> ::windows::core::HRESULT, |
| pub RequestClientLicense: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, reserve1: *const u8, reserve2: u32, ppclientlicense: *mut u8, pcbclientlicense: *mut u32) -> ::windows::core::HRESULT, |
| pub ProtocolComplete: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ulcomplete: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolListener(::windows::core::IUnknown); |
| impl IWRdsProtocolListener { |
| pub unsafe fn GetSettings(&self, wrdslistenersettinglevel: WRDS_LISTENER_SETTING_LEVEL) -> ::windows::core::Result<WRDS_LISTENER_SETTINGS> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetSettings)(::windows::core::Vtable::as_raw(self), wrdslistenersettinglevel, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WRDS_LISTENER_SETTINGS>(result__) |
| } |
| pub unsafe fn StartListen<'a, P0>(&self, pcallback: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWRdsProtocolListenerCallback>>, |
| { |
| (::windows::core::Vtable::vtable(self).StartListen)(::windows::core::Vtable::as_raw(self), pcallback.into().abi()).ok() |
| } |
| pub unsafe fn StopListen(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StopListen)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolListener, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolListener { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolListener { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolListener {} |
| impl ::core::fmt::Debug for IWRdsProtocolListener { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolListener").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolListener { |
| type Vtable = IWRdsProtocolListener_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolListener { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xfcbc131b_c686_451d_a773_e279e230f540); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolListener_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetSettings: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, wrdslistenersettinglevel: WRDS_LISTENER_SETTING_LEVEL, pwrdslistenersettings: *mut WRDS_LISTENER_SETTINGS) -> ::windows::core::HRESULT, |
| pub StartListen: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pcallback: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub StopListen: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolListenerCallback(::windows::core::IUnknown); |
| impl IWRdsProtocolListenerCallback { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn OnConnected<'a, P0>(&self, pconnection: P0, pwrdsconnectionsettings: *const WRDS_CONNECTION_SETTINGS) -> ::windows::core::Result<IWRdsProtocolConnectionCallback> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWRdsProtocolConnection>>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).OnConnected)(::windows::core::Vtable::as_raw(self), pconnection.into().abi(), ::core::mem::transmute(pwrdsconnectionsettings), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWRdsProtocolConnectionCallback>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolListenerCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolListenerCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolListenerCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolListenerCallback {} |
| impl ::core::fmt::Debug for IWRdsProtocolListenerCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolListenerCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolListenerCallback { |
| type Vtable = IWRdsProtocolListenerCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolListenerCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x3ab27e5b_4449_4dc1_b74a_91621d4fe984); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolListenerCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub OnConnected: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pconnection: *mut ::core::ffi::c_void, pwrdsconnectionsettings: *const WRDS_CONNECTION_SETTINGS, pcallback: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| OnConnected: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolLogonErrorRedirector(::windows::core::IUnknown); |
| impl IWRdsProtocolLogonErrorRedirector { |
| pub unsafe fn OnBeginPainting(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnBeginPainting)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn RedirectStatus<'a, P0>(&self, pszmessage: P0) -> ::windows::core::Result<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).RedirectStatus)(::windows::core::Vtable::as_raw(self), pszmessage.into(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE>(result__) |
| } |
| pub unsafe fn RedirectMessage<'a, P0, P1>(&self, pszcaption: P0, pszmessage: P1, utype: u32) -> ::windows::core::Result<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).RedirectMessage)(::windows::core::Vtable::as_raw(self), pszcaption.into(), pszmessage.into(), utype, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE>(result__) |
| } |
| pub unsafe fn RedirectLogonError<'a, P0, P1>(&self, ntsstatus: i32, ntssubstatus: i32, pszcaption: P0, pszmessage: P1, utype: u32) -> ::windows::core::Result<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).RedirectLogonError)(::windows::core::Vtable::as_raw(self), ntsstatus, ntssubstatus, pszcaption.into(), pszmessage.into(), utype, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolLogonErrorRedirector, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolLogonErrorRedirector { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolLogonErrorRedirector { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolLogonErrorRedirector {} |
| impl ::core::fmt::Debug for IWRdsProtocolLogonErrorRedirector { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolLogonErrorRedirector").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolLogonErrorRedirector { |
| type Vtable = IWRdsProtocolLogonErrorRedirector_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolLogonErrorRedirector { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x519fe83b_142a_4120_a3d5_a405d315281a); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolLogonErrorRedirector_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnBeginPainting: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub RedirectStatus: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pszmessage: ::windows::core::PCWSTR, presponse: *mut WTS_LOGON_ERROR_REDIRECTOR_RESPONSE) -> ::windows::core::HRESULT, |
| pub RedirectMessage: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pszcaption: ::windows::core::PCWSTR, pszmessage: ::windows::core::PCWSTR, utype: u32, presponse: *mut WTS_LOGON_ERROR_REDIRECTOR_RESPONSE) -> ::windows::core::HRESULT, |
| pub RedirectLogonError: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ntsstatus: i32, ntssubstatus: i32, pszcaption: ::windows::core::PCWSTR, pszmessage: ::windows::core::PCWSTR, utype: u32, presponse: *mut WTS_LOGON_ERROR_REDIRECTOR_RESPONSE) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolManager(::windows::core::IUnknown); |
| impl IWRdsProtocolManager { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn Initialize<'a, P0>(&self, piwrdssettings: P0, pwrdssettings: *const WRDS_SETTINGS) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWRdsProtocolSettings>>, |
| { |
| (::windows::core::Vtable::vtable(self).Initialize)(::windows::core::Vtable::as_raw(self), piwrdssettings.into().abi(), ::core::mem::transmute(pwrdssettings)).ok() |
| } |
| pub unsafe fn CreateListener<'a, P0>(&self, wszlistenername: P0) -> ::windows::core::Result<IWRdsProtocolListener> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateListener)(::windows::core::Vtable::as_raw(self), wszlistenername.into(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWRdsProtocolListener>(result__) |
| } |
| pub unsafe fn NotifyServiceStateChange(&self, ptsservicestatechange: *const WTS_SERVICE_STATE) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifyServiceStateChange)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(ptsservicestatechange)).ok() |
| } |
| pub unsafe fn NotifySessionOfServiceStart(&self, sessionid: *const WTS_SESSION_ID) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySessionOfServiceStart)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sessionid)).ok() |
| } |
| pub unsafe fn NotifySessionOfServiceStop(&self, sessionid: *const WTS_SESSION_ID) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySessionOfServiceStop)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sessionid)).ok() |
| } |
| pub unsafe fn NotifySessionStateChange(&self, sessionid: *const WTS_SESSION_ID, eventid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySessionStateChange)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sessionid), eventid).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn NotifySettingsChange(&self, pwrdssettings: *const WRDS_SETTINGS) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySettingsChange)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pwrdssettings)).ok() |
| } |
| pub unsafe fn Uninitialize(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Uninitialize)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolManager, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolManager { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolManager { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolManager {} |
| impl ::core::fmt::Debug for IWRdsProtocolManager { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolManager").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolManager { |
| type Vtable = IWRdsProtocolManager_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolManager { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xdc796967_3abb_40cd_a446_105276b58950); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolManager_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub Initialize: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, piwrdssettings: *mut ::core::ffi::c_void, pwrdssettings: *const WRDS_SETTINGS) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| Initialize: usize, |
| pub CreateListener: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, wszlistenername: ::windows::core::PCWSTR, pprotocollistener: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub NotifyServiceStateChange: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptsservicestatechange: *const WTS_SERVICE_STATE) -> ::windows::core::HRESULT, |
| pub NotifySessionOfServiceStart: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *const WTS_SESSION_ID) -> ::windows::core::HRESULT, |
| pub NotifySessionOfServiceStop: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *const WTS_SESSION_ID) -> ::windows::core::HRESULT, |
| pub NotifySessionStateChange: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *const WTS_SESSION_ID, eventid: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub NotifySettingsChange: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pwrdssettings: *const WRDS_SETTINGS) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| NotifySettingsChange: usize, |
| pub Uninitialize: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolSettings(::windows::core::IUnknown); |
| impl IWRdsProtocolSettings { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetSettings(&self, wrdssettingtype: WRDS_SETTING_TYPE, wrdssettinglevel: WRDS_SETTING_LEVEL) -> ::windows::core::Result<WRDS_SETTINGS> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetSettings)(::windows::core::Vtable::as_raw(self), wrdssettingtype, wrdssettinglevel, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WRDS_SETTINGS>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn MergeSettings(&self, pwrdssettings: *const WRDS_SETTINGS, wrdsconnectionsettinglevel: WRDS_CONNECTION_SETTING_LEVEL, pwrdsconnectionsettings: *mut WRDS_CONNECTION_SETTINGS) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).MergeSettings)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pwrdssettings), wrdsconnectionsettinglevel, ::core::mem::transmute(pwrdsconnectionsettings)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolSettings, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolSettings { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolSettings { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolSettings {} |
| impl ::core::fmt::Debug for IWRdsProtocolSettings { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolSettings").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolSettings { |
| type Vtable = IWRdsProtocolSettings_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolSettings { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x654a5a6a_2550_47eb_b6f7_ebd637475265); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolSettings_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetSettings: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, wrdssettingtype: WRDS_SETTING_TYPE, wrdssettinglevel: WRDS_SETTING_LEVEL, pwrdssettings: *mut WRDS_SETTINGS) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetSettings: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub MergeSettings: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pwrdssettings: *const WRDS_SETTINGS, wrdsconnectionsettinglevel: WRDS_CONNECTION_SETTING_LEVEL, pwrdsconnectionsettings: *mut WRDS_CONNECTION_SETTINGS) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| MergeSettings: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolShadowCallback(::windows::core::IUnknown); |
| impl IWRdsProtocolShadowCallback { |
| pub unsafe fn StopShadow(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StopShadow)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn InvokeTargetShadow<'a, P0, P1>(&self, ptargetservername: P0, targetsessionid: u32, pparam1: &[u8], pparam2: &[u8], pparam3: &[u8], pparam4: &[u8], pclientname: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).InvokeTargetShadow)(::windows::core::Vtable::as_raw(self), ptargetservername.into(), targetsessionid, ::core::mem::transmute(pparam1.as_ptr()), pparam1.len() as _, ::core::mem::transmute(pparam2.as_ptr()), pparam2.len() as _, ::core::mem::transmute(pparam3.as_ptr()), pparam3.len() as _, ::core::mem::transmute(pparam4.as_ptr()), pparam4.len() as _, pclientname.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolShadowCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolShadowCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolShadowCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolShadowCallback {} |
| impl ::core::fmt::Debug for IWRdsProtocolShadowCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolShadowCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolShadowCallback { |
| type Vtable = IWRdsProtocolShadowCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolShadowCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xe0667ce0_0372_40d6_adb2_a0f3322674d6); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolShadowCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub StopShadow: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub InvokeTargetShadow: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptargetservername: ::windows::core::PCWSTR, targetsessionid: u32, pparam1: *const u8, param1size: u32, pparam2: *const u8, param2size: u32, pparam3: *const u8, param3size: u32, pparam4: *const u8, param4size: u32, pclientname: ::windows::core::PCWSTR) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsProtocolShadowConnection(::windows::core::IUnknown); |
| impl IWRdsProtocolShadowConnection { |
| pub unsafe fn Start<'a, P0, P1>(&self, ptargetservername: P0, targetsessionid: u32, hotkeyvk: u8, hotkeymodifiers: u16, pshadowcallback: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, IWRdsProtocolShadowCallback>>, |
| { |
| (::windows::core::Vtable::vtable(self).Start)(::windows::core::Vtable::as_raw(self), ptargetservername.into(), targetsessionid, hotkeyvk, hotkeymodifiers, pshadowcallback.into().abi()).ok() |
| } |
| pub unsafe fn Stop(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Stop)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn DoTarget<'a, P0>(&self, pparam1: &[u8], pparam2: &[u8], pparam3: &[u8], pparam4: &[u8], pclientname: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).DoTarget)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pparam1.as_ptr()), pparam1.len() as _, ::core::mem::transmute(pparam2.as_ptr()), pparam2.len() as _, ::core::mem::transmute(pparam3.as_ptr()), pparam3.len() as _, ::core::mem::transmute(pparam4.as_ptr()), pparam4.len() as _, pclientname.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsProtocolShadowConnection, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsProtocolShadowConnection { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsProtocolShadowConnection { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsProtocolShadowConnection {} |
| impl ::core::fmt::Debug for IWRdsProtocolShadowConnection { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsProtocolShadowConnection").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsProtocolShadowConnection { |
| type Vtable = IWRdsProtocolShadowConnection_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsProtocolShadowConnection { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x9ae85ce6_cade_4548_8feb_99016597f60a); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsProtocolShadowConnection_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Start: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptargetservername: ::windows::core::PCWSTR, targetsessionid: u32, hotkeyvk: u8, hotkeymodifiers: u16, pshadowcallback: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Stop: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub DoTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pparam1: *const u8, param1size: u32, pparam2: *const u8, param2size: u32, pparam3: *const u8, param3size: u32, pparam4: *const u8, param4size: u32, pclientname: ::windows::core::PCWSTR) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWRdsWddmIddProps(::windows::core::IUnknown); |
| impl IWRdsWddmIddProps { |
| pub unsafe fn GetHardwareId(&self, pdisplaydriverhardwareid: &[u16]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).GetHardwareId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pdisplaydriverhardwareid.as_ptr()), pdisplaydriverhardwareid.len() as _).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn OnDriverLoad<'a, P0>(&self, sessionid: u32, driverhandle: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| { |
| (::windows::core::Vtable::vtable(self).OnDriverLoad)(::windows::core::Vtable::as_raw(self), sessionid, driverhandle.into()).ok() |
| } |
| pub unsafe fn OnDriverUnload(&self, sessionid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnDriverUnload)(::windows::core::Vtable::as_raw(self), sessionid).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn EnableWddmIdd<'a, P0>(&self, enabled: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| (::windows::core::Vtable::vtable(self).EnableWddmIdd)(::windows::core::Vtable::as_raw(self), enabled.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWRdsWddmIddProps, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWRdsWddmIddProps { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWRdsWddmIddProps { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWRdsWddmIddProps {} |
| impl ::core::fmt::Debug for IWRdsWddmIddProps { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWRdsWddmIddProps").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWRdsWddmIddProps { |
| type Vtable = IWRdsWddmIddProps_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWRdsWddmIddProps { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x1382df4d_a289_43d1_a184_144726f9af90); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWRdsWddmIddProps_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetHardwareId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pdisplaydriverhardwareid: ::windows::core::PCWSTR, count: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub OnDriverLoad: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: u32, driverhandle: super::super::Foundation::HANDLE_PTR) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| OnDriverLoad: usize, |
| pub OnDriverUnload: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub EnableWddmIdd: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, enabled: super::super::Foundation::BOOL) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| EnableWddmIdd: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSBitmapRenderService(::windows::core::IUnknown); |
| impl IWTSBitmapRenderService { |
| pub unsafe fn GetMappedRenderer<'a, P0>(&self, mappingid: u64, pmappedrenderercallback: P0) -> ::windows::core::Result<IWTSBitmapRenderer> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWTSBitmapRendererCallback>>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetMappedRenderer)(::windows::core::Vtable::as_raw(self), mappingid, pmappedrenderercallback.into().abi(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWTSBitmapRenderer>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSBitmapRenderService, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSBitmapRenderService { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSBitmapRenderService { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSBitmapRenderService {} |
| impl ::core::fmt::Debug for IWTSBitmapRenderService { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSBitmapRenderService").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSBitmapRenderService { |
| type Vtable = IWTSBitmapRenderService_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSBitmapRenderService { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xea326091_05fe_40c1_b49c_3d2ef4626a0e); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSBitmapRenderService_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetMappedRenderer: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, mappingid: u64, pmappedrenderercallback: *mut ::core::ffi::c_void, ppmappedrenderer: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSBitmapRenderer(::windows::core::IUnknown); |
| impl IWTSBitmapRenderer { |
| pub unsafe fn Render(&self, imageformat: ::windows::core::GUID, dwwidth: u32, dwheight: u32, cbstride: i32, pimagebuffer: &[u8]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Render)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(imageformat), dwwidth, dwheight, cbstride, pimagebuffer.len() as _, ::core::mem::transmute(pimagebuffer.as_ptr())).ok() |
| } |
| pub unsafe fn GetRendererStatistics(&self) -> ::windows::core::Result<BITMAP_RENDERER_STATISTICS> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetRendererStatistics)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<BITMAP_RENDERER_STATISTICS>(result__) |
| } |
| pub unsafe fn RemoveMapping(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RemoveMapping)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSBitmapRenderer, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSBitmapRenderer { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSBitmapRenderer { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSBitmapRenderer {} |
| impl ::core::fmt::Debug for IWTSBitmapRenderer { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSBitmapRenderer").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSBitmapRenderer { |
| type Vtable = IWTSBitmapRenderer_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSBitmapRenderer { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x5b7acc97_f3c9_46f7_8c5b_fa685d3441b1); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSBitmapRenderer_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Render: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, imageformat: ::windows::core::GUID, dwwidth: u32, dwheight: u32, cbstride: i32, cbimagebuffer: u32, pimagebuffer: *const u8) -> ::windows::core::HRESULT, |
| pub GetRendererStatistics: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pstatistics: *mut BITMAP_RENDERER_STATISTICS) -> ::windows::core::HRESULT, |
| pub RemoveMapping: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSBitmapRendererCallback(::windows::core::IUnknown); |
| impl IWTSBitmapRendererCallback { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn OnTargetSizeChanged(&self, rcnewsize: super::super::Foundation::RECT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnTargetSizeChanged)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(rcnewsize)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSBitmapRendererCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSBitmapRendererCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSBitmapRendererCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSBitmapRendererCallback {} |
| impl ::core::fmt::Debug for IWTSBitmapRendererCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSBitmapRendererCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSBitmapRendererCallback { |
| type Vtable = IWTSBitmapRendererCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSBitmapRendererCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xd782928e_fe4e_4e77_ae90_9cd0b3e3b353); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSBitmapRendererCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub OnTargetSizeChanged: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, rcnewsize: super::super::Foundation::RECT) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| OnTargetSizeChanged: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSListener(::windows::core::IUnknown); |
| impl IWTSListener { |
| #[doc = "*Required features: `\"Win32_System_Com_StructuredStorage\"`*"] |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub unsafe fn GetConfiguration(&self) -> ::windows::core::Result<super::Com::StructuredStorage::IPropertyBag> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetConfiguration)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<super::Com::StructuredStorage::IPropertyBag>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSListener, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSListener { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSListener { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSListener {} |
| impl ::core::fmt::Debug for IWTSListener { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSListener").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSListener { |
| type Vtable = IWTSListener_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSListener { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xa1230206_9a39_4d58_8674_cdb4dff4e73b); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSListener_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_System_Com_StructuredStorage")] |
| pub GetConfiguration: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pppropertybag: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com_StructuredStorage"))] |
| GetConfiguration: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSListenerCallback(::windows::core::IUnknown); |
| impl IWTSListenerCallback { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn OnNewChannelConnection<'a, P0>(&self, pchannel: P0, data: &::windows::core::BSTR, pbaccept: *mut super::super::Foundation::BOOL, ppcallback: *mut ::core::option::Option<IWTSVirtualChannelCallback>) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWTSVirtualChannel>>, |
| { |
| (::windows::core::Vtable::vtable(self).OnNewChannelConnection)(::windows::core::Vtable::as_raw(self), pchannel.into().abi(), ::core::mem::transmute_copy(data), ::core::mem::transmute(pbaccept), ::core::mem::transmute(ppcallback)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSListenerCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSListenerCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSListenerCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSListenerCallback {} |
| impl ::core::fmt::Debug for IWTSListenerCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSListenerCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSListenerCallback { |
| type Vtable = IWTSListenerCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSListenerCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xa1230203_d6a7_11d8_b9fd_000bdbd1f198); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSListenerCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub OnNewChannelConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pchannel: *mut ::core::ffi::c_void, data: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pbaccept: *mut super::super::Foundation::BOOL, ppcallback: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| OnNewChannelConnection: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSPlugin(::windows::core::IUnknown); |
| impl IWTSPlugin { |
| pub unsafe fn Initialize<'a, P0>(&self, pchannelmgr: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWTSVirtualChannelManager>>, |
| { |
| (::windows::core::Vtable::vtable(self).Initialize)(::windows::core::Vtable::as_raw(self), pchannelmgr.into().abi()).ok() |
| } |
| pub unsafe fn Connected(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Connected)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn Disconnected(&self, dwdisconnectcode: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Disconnected)(::windows::core::Vtable::as_raw(self), dwdisconnectcode).ok() |
| } |
| pub unsafe fn Terminated(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Terminated)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSPlugin, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSPlugin { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSPlugin { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSPlugin {} |
| impl ::core::fmt::Debug for IWTSPlugin { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSPlugin").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSPlugin { |
| type Vtable = IWTSPlugin_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSPlugin { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xa1230201_1439_4e62_a414_190d0ac3d40e); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSPlugin_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Initialize: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pchannelmgr: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Connected: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Disconnected: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, dwdisconnectcode: u32) -> ::windows::core::HRESULT, |
| pub Terminated: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSPluginServiceProvider(::windows::core::IUnknown); |
| impl IWTSPluginServiceProvider { |
| pub unsafe fn GetService(&self, serviceid: ::windows::core::GUID) -> ::windows::core::Result<::windows::core::IUnknown> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetService)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(serviceid), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::IUnknown>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSPluginServiceProvider, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSPluginServiceProvider { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSPluginServiceProvider { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSPluginServiceProvider {} |
| impl ::core::fmt::Debug for IWTSPluginServiceProvider { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSPluginServiceProvider").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSPluginServiceProvider { |
| type Vtable = IWTSPluginServiceProvider_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSPluginServiceProvider { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xd3e07363_087c_476c_86a7_dbb15f46ddb4); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSPluginServiceProvider_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetService: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, serviceid: ::windows::core::GUID, ppunkobject: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolConnection(::windows::core::IUnknown); |
| impl IWTSProtocolConnection { |
| pub unsafe fn GetLogonErrorRedirector(&self) -> ::windows::core::Result<IWTSProtocolLogonErrorRedirector> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetLogonErrorRedirector)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWTSProtocolLogonErrorRedirector>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn SendPolicyData(&self, ppolicydata: *const WTS_POLICY_DATA) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SendPolicyData)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(ppolicydata)).ok() |
| } |
| pub unsafe fn AcceptConnection(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).AcceptConnection)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetClientData(&self) -> ::windows::core::Result<WTS_CLIENT_DATA> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetClientData)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_CLIENT_DATA>(result__) |
| } |
| pub unsafe fn GetUserCredentials(&self) -> ::windows::core::Result<WTS_USER_CREDENTIAL> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetUserCredentials)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_USER_CREDENTIAL>(result__) |
| } |
| pub unsafe fn GetLicenseConnection(&self) -> ::windows::core::Result<IWTSProtocolLicenseConnection> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetLicenseConnection)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWTSProtocolLicenseConnection>(result__) |
| } |
| pub unsafe fn AuthenticateClientToSession(&self) -> ::windows::core::Result<WTS_SESSION_ID> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).AuthenticateClientToSession)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_SESSION_ID>(result__) |
| } |
| pub unsafe fn NotifySessionId(&self, sessionid: *const WTS_SESSION_ID) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySessionId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sessionid)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetProtocolHandles(&self, pkeyboardhandle: *mut super::super::Foundation::HANDLE_PTR, pmousehandle: *mut super::super::Foundation::HANDLE_PTR, pbeephandle: *mut super::super::Foundation::HANDLE_PTR, pvideohandle: *mut super::super::Foundation::HANDLE_PTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).GetProtocolHandles)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pkeyboardhandle), ::core::mem::transmute(pmousehandle), ::core::mem::transmute(pbeephandle), ::core::mem::transmute(pvideohandle)).ok() |
| } |
| pub unsafe fn ConnectNotify(&self, sessionid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ConnectNotify)(::windows::core::Vtable::as_raw(self), sessionid).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn IsUserAllowedToLogon<'a, P0, P1, P2>(&self, sessionid: u32, usertoken: P0, pdomainname: P1, pusername: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).IsUserAllowedToLogon)(::windows::core::Vtable::as_raw(self), sessionid, usertoken.into(), pdomainname.into(), pusername.into()).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn SessionArbitrationEnumeration<'a, P0, P1>(&self, husertoken: P0, bsinglesessionperuserenabled: P1, psessionidarray: *mut u32, pdwsessionidentifiercount: *mut u32) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| (::windows::core::Vtable::vtable(self).SessionArbitrationEnumeration)(::windows::core::Vtable::as_raw(self), husertoken.into(), bsinglesessionperuserenabled.into(), ::core::mem::transmute(psessionidarray), ::core::mem::transmute(pdwsessionidentifiercount)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn LogonNotify<'a, P0, P1, P2>(&self, hclienttoken: P0, wszusername: P1, wszdomainname: P2, sessionid: *const WTS_SESSION_ID) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<super::super::Foundation::HANDLE_PTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).LogonNotify)(::windows::core::Vtable::as_raw(self), hclienttoken.into(), wszusername.into(), wszdomainname.into(), ::core::mem::transmute(sessionid)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetUserData(&self, ppolicydata: *const WTS_POLICY_DATA, pclientdata: *mut WTS_USER_DATA) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).GetUserData)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(ppolicydata), ::core::mem::transmute(pclientdata)).ok() |
| } |
| pub unsafe fn DisconnectNotify(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DisconnectNotify)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn Close(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Close)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn GetProtocolStatus(&self) -> ::windows::core::Result<WTS_PROTOCOL_STATUS> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetProtocolStatus)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_PROTOCOL_STATUS>(result__) |
| } |
| pub unsafe fn GetLastInputTime(&self) -> ::windows::core::Result<u64> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetLastInputTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u64>(result__) |
| } |
| pub unsafe fn SetErrorInfo(&self, ulerror: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetErrorInfo)(::windows::core::Vtable::as_raw(self), ulerror).ok() |
| } |
| pub unsafe fn SendBeep(&self, frequency: u32, duration: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SendBeep)(::windows::core::Vtable::as_raw(self), frequency, duration).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn CreateVirtualChannel<'a, P0, P1>(&self, szendpointname: P0, bstatic: P1, requestedpriority: u32) -> ::windows::core::Result<usize> |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| P1: ::std::convert::Into<super::super::Foundation::BOOL>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateVirtualChannel)(::windows::core::Vtable::as_raw(self), szendpointname.into(), bstatic.into(), requestedpriority, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<usize>(result__) |
| } |
| pub unsafe fn QueryProperty(&self, querytype: ::windows::core::GUID, ppropertyentriesin: &[WTS_PROPERTY_VALUE], ppropertyentriesout: &mut [WTS_PROPERTY_VALUE]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).QueryProperty)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(querytype), ppropertyentriesin.len() as _, ppropertyentriesout.len() as _, ::core::mem::transmute(ppropertyentriesin.as_ptr()), ::core::mem::transmute(ppropertyentriesout.as_ptr())).ok() |
| } |
| pub unsafe fn GetShadowConnection(&self) -> ::windows::core::Result<IWTSProtocolShadowConnection> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetShadowConnection)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWTSProtocolShadowConnection>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolConnection, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolConnection { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolConnection { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolConnection {} |
| impl ::core::fmt::Debug for IWTSProtocolConnection { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolConnection").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolConnection { |
| type Vtable = IWTSProtocolConnection_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolConnection { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x23083765_9095_4648_98bf_ef81c914032d); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolConnection_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetLogonErrorRedirector: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pplogonerrorredir: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub SendPolicyData: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppolicydata: *const WTS_POLICY_DATA) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| SendPolicyData: usize, |
| pub AcceptConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetClientData: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pclientdata: *mut WTS_CLIENT_DATA) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetClientData: usize, |
| pub GetUserCredentials: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pusercreds: *mut WTS_USER_CREDENTIAL) -> ::windows::core::HRESULT, |
| pub GetLicenseConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pplicenseconnection: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub AuthenticateClientToSession: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *mut WTS_SESSION_ID) -> ::windows::core::HRESULT, |
| pub NotifySessionId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *const WTS_SESSION_ID) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetProtocolHandles: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pkeyboardhandle: *mut super::super::Foundation::HANDLE_PTR, pmousehandle: *mut super::super::Foundation::HANDLE_PTR, pbeephandle: *mut super::super::Foundation::HANDLE_PTR, pvideohandle: *mut super::super::Foundation::HANDLE_PTR) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetProtocolHandles: usize, |
| pub ConnectNotify: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub IsUserAllowedToLogon: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: u32, usertoken: super::super::Foundation::HANDLE_PTR, pdomainname: ::windows::core::PCWSTR, pusername: ::windows::core::PCWSTR) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| IsUserAllowedToLogon: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub SessionArbitrationEnumeration: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, husertoken: super::super::Foundation::HANDLE_PTR, bsinglesessionperuserenabled: super::super::Foundation::BOOL, psessionidarray: *mut u32, pdwsessionidentifiercount: *mut u32) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| SessionArbitrationEnumeration: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub LogonNotify: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, hclienttoken: super::super::Foundation::HANDLE_PTR, wszusername: ::windows::core::PCWSTR, wszdomainname: ::windows::core::PCWSTR, sessionid: *const WTS_SESSION_ID) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| LogonNotify: usize, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetUserData: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppolicydata: *const WTS_POLICY_DATA, pclientdata: *mut WTS_USER_DATA) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetUserData: usize, |
| pub DisconnectNotify: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Close: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub GetProtocolStatus: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pprotocolstatus: *mut WTS_PROTOCOL_STATUS) -> ::windows::core::HRESULT, |
| pub GetLastInputTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, plastinputtime: *mut u64) -> ::windows::core::HRESULT, |
| pub SetErrorInfo: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ulerror: u32) -> ::windows::core::HRESULT, |
| pub SendBeep: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, frequency: u32, duration: u32) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub CreateVirtualChannel: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, szendpointname: ::windows::core::PCSTR, bstatic: super::super::Foundation::BOOL, requestedpriority: u32, phchannel: *mut usize) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| CreateVirtualChannel: usize, |
| pub QueryProperty: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, querytype: ::windows::core::GUID, ulnumentriesin: u32, ulnumentriesout: u32, ppropertyentriesin: *const WTS_PROPERTY_VALUE, ppropertyentriesout: *mut WTS_PROPERTY_VALUE) -> ::windows::core::HRESULT, |
| pub GetShadowConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ppshadowconnection: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolConnectionCallback(::windows::core::IUnknown); |
| impl IWTSProtocolConnectionCallback { |
| pub unsafe fn OnReady(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnReady)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn BrokenConnection(&self, reason: u32, source: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).BrokenConnection)(::windows::core::Vtable::as_raw(self), reason, source).ok() |
| } |
| pub unsafe fn StopScreenUpdates(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StopScreenUpdates)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn RedrawWindow(&self, rect: *const WTS_SMALL_RECT) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RedrawWindow)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(rect)).ok() |
| } |
| pub unsafe fn DisplayIOCtl(&self, displayioctl: *const WTS_DISPLAY_IOCTL) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DisplayIOCtl)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(displayioctl)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolConnectionCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolConnectionCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolConnectionCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolConnectionCallback {} |
| impl ::core::fmt::Debug for IWTSProtocolConnectionCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolConnectionCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolConnectionCallback { |
| type Vtable = IWTSProtocolConnectionCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolConnectionCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x23083765_75eb_41fe_b4fb_e086242afa0f); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolConnectionCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnReady: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub BrokenConnection: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, reason: u32, source: u32) -> ::windows::core::HRESULT, |
| pub StopScreenUpdates: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub RedrawWindow: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, rect: *const WTS_SMALL_RECT) -> ::windows::core::HRESULT, |
| pub DisplayIOCtl: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, displayioctl: *const WTS_DISPLAY_IOCTL) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolLicenseConnection(::windows::core::IUnknown); |
| impl IWTSProtocolLicenseConnection { |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn RequestLicensingCapabilities(&self, pplicensecapabilities: *mut WTS_LICENSE_CAPABILITIES, pcblicensecapabilities: *mut u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RequestLicensingCapabilities)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pplicensecapabilities), ::core::mem::transmute(pcblicensecapabilities)).ok() |
| } |
| pub unsafe fn SendClientLicense(&self, pclientlicense: &[u8]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SendClientLicense)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pclientlicense.as_ptr()), pclientlicense.len() as _).ok() |
| } |
| pub unsafe fn RequestClientLicense(&self, reserve1: &[u8], ppclientlicense: *mut u8, pcbclientlicense: *mut u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RequestClientLicense)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(reserve1.as_ptr()), reserve1.len() as _, ::core::mem::transmute(ppclientlicense), ::core::mem::transmute(pcbclientlicense)).ok() |
| } |
| pub unsafe fn ProtocolComplete(&self, ulcomplete: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ProtocolComplete)(::windows::core::Vtable::as_raw(self), ulcomplete).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolLicenseConnection, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolLicenseConnection { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolLicenseConnection { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolLicenseConnection {} |
| impl ::core::fmt::Debug for IWTSProtocolLicenseConnection { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolLicenseConnection").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolLicenseConnection { |
| type Vtable = IWTSProtocolLicenseConnection_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolLicenseConnection { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x23083765_178c_4079_8e4a_fea6496a4d70); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolLicenseConnection_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub RequestLicensingCapabilities: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pplicensecapabilities: *mut WTS_LICENSE_CAPABILITIES, pcblicensecapabilities: *mut u32) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| RequestLicensingCapabilities: usize, |
| pub SendClientLicense: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pclientlicense: *const u8, cbclientlicense: u32) -> ::windows::core::HRESULT, |
| pub RequestClientLicense: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, reserve1: *const u8, reserve2: u32, ppclientlicense: *mut u8, pcbclientlicense: *mut u32) -> ::windows::core::HRESULT, |
| pub ProtocolComplete: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ulcomplete: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolListener(::windows::core::IUnknown); |
| impl IWTSProtocolListener { |
| pub unsafe fn StartListen<'a, P0>(&self, pcallback: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWTSProtocolListenerCallback>>, |
| { |
| (::windows::core::Vtable::vtable(self).StartListen)(::windows::core::Vtable::as_raw(self), pcallback.into().abi()).ok() |
| } |
| pub unsafe fn StopListen(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StopListen)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolListener, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolListener { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolListener { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolListener {} |
| impl ::core::fmt::Debug for IWTSProtocolListener { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolListener").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolListener { |
| type Vtable = IWTSProtocolListener_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolListener { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x23083765_45f0_4394_8f69_32b2bc0ef4ca); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolListener_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub StartListen: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pcallback: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub StopListen: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolListenerCallback(::windows::core::IUnknown); |
| impl IWTSProtocolListenerCallback { |
| pub unsafe fn OnConnected<'a, P0>(&self, pconnection: P0) -> ::windows::core::Result<IWTSProtocolConnectionCallback> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWTSProtocolConnection>>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).OnConnected)(::windows::core::Vtable::as_raw(self), pconnection.into().abi(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWTSProtocolConnectionCallback>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolListenerCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolListenerCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolListenerCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolListenerCallback {} |
| impl ::core::fmt::Debug for IWTSProtocolListenerCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolListenerCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolListenerCallback { |
| type Vtable = IWTSProtocolListenerCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolListenerCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x23083765_1a2d_4de2_97de_4a35f260f0b3); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolListenerCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnConnected: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pconnection: *mut ::core::ffi::c_void, pcallback: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolLogonErrorRedirector(::windows::core::IUnknown); |
| impl IWTSProtocolLogonErrorRedirector { |
| pub unsafe fn OnBeginPainting(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnBeginPainting)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn RedirectStatus<'a, P0>(&self, pszmessage: P0) -> ::windows::core::Result<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).RedirectStatus)(::windows::core::Vtable::as_raw(self), pszmessage.into(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE>(result__) |
| } |
| pub unsafe fn RedirectMessage<'a, P0, P1>(&self, pszcaption: P0, pszmessage: P1, utype: u32) -> ::windows::core::Result<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).RedirectMessage)(::windows::core::Vtable::as_raw(self), pszcaption.into(), pszmessage.into(), utype, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE>(result__) |
| } |
| pub unsafe fn RedirectLogonError<'a, P0, P1>(&self, ntsstatus: i32, ntssubstatus: i32, pszcaption: P0, pszmessage: P1, utype: u32) -> ::windows::core::Result<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).RedirectLogonError)(::windows::core::Vtable::as_raw(self), ntsstatus, ntssubstatus, pszcaption.into(), pszmessage.into(), utype, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<WTS_LOGON_ERROR_REDIRECTOR_RESPONSE>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolLogonErrorRedirector, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolLogonErrorRedirector { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolLogonErrorRedirector { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolLogonErrorRedirector {} |
| impl ::core::fmt::Debug for IWTSProtocolLogonErrorRedirector { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolLogonErrorRedirector").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolLogonErrorRedirector { |
| type Vtable = IWTSProtocolLogonErrorRedirector_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolLogonErrorRedirector { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xfd9b61a7_2916_4627_8dee_4328711ad6cb); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolLogonErrorRedirector_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnBeginPainting: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub RedirectStatus: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pszmessage: ::windows::core::PCWSTR, presponse: *mut WTS_LOGON_ERROR_REDIRECTOR_RESPONSE) -> ::windows::core::HRESULT, |
| pub RedirectMessage: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pszcaption: ::windows::core::PCWSTR, pszmessage: ::windows::core::PCWSTR, utype: u32, presponse: *mut WTS_LOGON_ERROR_REDIRECTOR_RESPONSE) -> ::windows::core::HRESULT, |
| pub RedirectLogonError: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ntsstatus: i32, ntssubstatus: i32, pszcaption: ::windows::core::PCWSTR, pszmessage: ::windows::core::PCWSTR, utype: u32, presponse: *mut WTS_LOGON_ERROR_REDIRECTOR_RESPONSE) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolManager(::windows::core::IUnknown); |
| impl IWTSProtocolManager { |
| pub unsafe fn CreateListener<'a, P0>(&self, wszlistenername: P0) -> ::windows::core::Result<IWTSProtocolListener> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateListener)(::windows::core::Vtable::as_raw(self), wszlistenername.into(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWTSProtocolListener>(result__) |
| } |
| pub unsafe fn NotifyServiceStateChange(&self, ptsservicestatechange: *const WTS_SERVICE_STATE) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifyServiceStateChange)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(ptsservicestatechange)).ok() |
| } |
| pub unsafe fn NotifySessionOfServiceStart(&self, sessionid: *const WTS_SESSION_ID) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySessionOfServiceStart)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sessionid)).ok() |
| } |
| pub unsafe fn NotifySessionOfServiceStop(&self, sessionid: *const WTS_SESSION_ID) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySessionOfServiceStop)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sessionid)).ok() |
| } |
| pub unsafe fn NotifySessionStateChange(&self, sessionid: *const WTS_SESSION_ID, eventid: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).NotifySessionStateChange)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(sessionid), eventid).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolManager, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolManager { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolManager { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolManager {} |
| impl ::core::fmt::Debug for IWTSProtocolManager { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolManager").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolManager { |
| type Vtable = IWTSProtocolManager_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolManager { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xf9eaf6cc_ed79_4f01_821d_1f881b9f66cc); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolManager_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub CreateListener: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, wszlistenername: ::windows::core::PCWSTR, pprotocollistener: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub NotifyServiceStateChange: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptsservicestatechange: *const WTS_SERVICE_STATE) -> ::windows::core::HRESULT, |
| pub NotifySessionOfServiceStart: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *const WTS_SESSION_ID) -> ::windows::core::HRESULT, |
| pub NotifySessionOfServiceStop: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *const WTS_SESSION_ID) -> ::windows::core::HRESULT, |
| pub NotifySessionStateChange: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, sessionid: *const WTS_SESSION_ID, eventid: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolShadowCallback(::windows::core::IUnknown); |
| impl IWTSProtocolShadowCallback { |
| pub unsafe fn StopShadow(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StopShadow)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn InvokeTargetShadow<'a, P0, P1>(&self, ptargetservername: P0, targetsessionid: u32, pparam1: &[u8], pparam2: &[u8], pparam3: &[u8], pparam4: &[u8], pclientname: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).InvokeTargetShadow)(::windows::core::Vtable::as_raw(self), ptargetservername.into(), targetsessionid, ::core::mem::transmute(pparam1.as_ptr()), pparam1.len() as _, ::core::mem::transmute(pparam2.as_ptr()), pparam2.len() as _, ::core::mem::transmute(pparam3.as_ptr()), pparam3.len() as _, ::core::mem::transmute(pparam4.as_ptr()), pparam4.len() as _, pclientname.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolShadowCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolShadowCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolShadowCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolShadowCallback {} |
| impl ::core::fmt::Debug for IWTSProtocolShadowCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolShadowCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolShadowCallback { |
| type Vtable = IWTSProtocolShadowCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolShadowCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x503a2504_aae5_4ab1_93e0_6d1c4bc6f71a); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolShadowCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub StopShadow: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub InvokeTargetShadow: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptargetservername: ::windows::core::PCWSTR, targetsessionid: u32, pparam1: *const u8, param1size: u32, pparam2: *const u8, param2size: u32, pparam3: *const u8, param3size: u32, pparam4: *const u8, param4size: u32, pclientname: ::windows::core::PCWSTR) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSProtocolShadowConnection(::windows::core::IUnknown); |
| impl IWTSProtocolShadowConnection { |
| pub unsafe fn Start<'a, P0, P1>(&self, ptargetservername: P0, targetsessionid: u32, hotkeyvk: u8, hotkeymodifiers: u16, pshadowcallback: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, IWTSProtocolShadowCallback>>, |
| { |
| (::windows::core::Vtable::vtable(self).Start)(::windows::core::Vtable::as_raw(self), ptargetservername.into(), targetsessionid, hotkeyvk, hotkeymodifiers, pshadowcallback.into().abi()).ok() |
| } |
| pub unsafe fn Stop(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Stop)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn DoTarget<'a, P0>(&self, pparam1: &[u8], pparam2: &[u8], pparam3: &[u8], pparam4: &[u8], pclientname: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).DoTarget)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(pparam1.as_ptr()), pparam1.len() as _, ::core::mem::transmute(pparam2.as_ptr()), pparam2.len() as _, ::core::mem::transmute(pparam3.as_ptr()), pparam3.len() as _, ::core::mem::transmute(pparam4.as_ptr()), pparam4.len() as _, pclientname.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSProtocolShadowConnection, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSProtocolShadowConnection { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSProtocolShadowConnection { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSProtocolShadowConnection {} |
| impl ::core::fmt::Debug for IWTSProtocolShadowConnection { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSProtocolShadowConnection").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSProtocolShadowConnection { |
| type Vtable = IWTSProtocolShadowConnection_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSProtocolShadowConnection { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xee3b0c14_37fb_456b_bab3_6d6cd51e13bf); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSProtocolShadowConnection_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Start: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, ptargetservername: ::windows::core::PCWSTR, targetsessionid: u32, hotkeyvk: u8, hotkeymodifiers: u16, pshadowcallback: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Stop: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub DoTarget: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pparam1: *const u8, param1size: u32, pparam2: *const u8, param2size: u32, pparam3: *const u8, param3size: u32, pparam4: *const u8, param4size: u32, pclientname: ::windows::core::PCWSTR) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSSBPlugin(::windows::core::IUnknown); |
| impl IWTSSBPlugin { |
| pub unsafe fn Initialize(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).Initialize)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| pub unsafe fn WTSSBX_MachineChangeNotification(&self, notificationtype: WTSSBX_NOTIFICATION_TYPE, machineid: i32, pmachineinfo: *const WTSSBX_MACHINE_INFO) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).WTSSBX_MachineChangeNotification)(::windows::core::Vtable::as_raw(self), notificationtype, machineid, ::core::mem::transmute(pmachineinfo)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn WTSSBX_SessionChangeNotification(&self, notificationtype: WTSSBX_NOTIFICATION_TYPE, machineid: i32, sessioninfo: &[WTSSBX_SESSION_INFO]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).WTSSBX_SessionChangeNotification)(::windows::core::Vtable::as_raw(self), notificationtype, machineid, sessioninfo.len() as _, ::core::mem::transmute(sessioninfo.as_ptr())).ok() |
| } |
| pub unsafe fn WTSSBX_GetMostSuitableServer<'a, P0, P1, P2, P3>(&self, username: P0, domainname: P1, applicationtype: P2, farmname: P3, pmachineid: *mut i32) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| P3: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).WTSSBX_GetMostSuitableServer)(::windows::core::Vtable::as_raw(self), username.into(), domainname.into(), applicationtype.into(), farmname.into(), ::core::mem::transmute(pmachineid)).ok() |
| } |
| pub unsafe fn Terminated(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Terminated)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| pub unsafe fn WTSSBX_GetUserExternalSession<'a, P0, P1, P2>(&self, username: P0, domainname: P1, applicationtype: P2, redirectorinternalip: *const WTSSBX_IP_ADDRESS, psessionid: *mut u32, pmachineconnectinfo: *mut WTSSBX_MACHINE_CONNECT_INFO) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).WTSSBX_GetUserExternalSession)(::windows::core::Vtable::as_raw(self), username.into(), domainname.into(), applicationtype.into(), ::core::mem::transmute(redirectorinternalip), ::core::mem::transmute(psessionid), ::core::mem::transmute(pmachineconnectinfo)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSSBPlugin, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSSBPlugin { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSSBPlugin { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSSBPlugin {} |
| impl ::core::fmt::Debug for IWTSSBPlugin { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSSBPlugin").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSSBPlugin { |
| type Vtable = IWTSSBPlugin_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSSBPlugin { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xdc44be78_b18d_4399_b210_641bf67a002c); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSSBPlugin_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Initialize: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, plugincapabilities: *mut u32) -> ::windows::core::HRESULT, |
| pub WTSSBX_MachineChangeNotification: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, notificationtype: WTSSBX_NOTIFICATION_TYPE, machineid: i32, pmachineinfo: *const WTSSBX_MACHINE_INFO) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_Foundation")] |
| pub WTSSBX_SessionChangeNotification: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, notificationtype: WTSSBX_NOTIFICATION_TYPE, machineid: i32, numofsessions: u32, sessioninfo: *const WTSSBX_SESSION_INFO) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| WTSSBX_SessionChangeNotification: usize, |
| pub WTSSBX_GetMostSuitableServer: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, username: ::windows::core::PCWSTR, domainname: ::windows::core::PCWSTR, applicationtype: ::windows::core::PCWSTR, farmname: ::windows::core::PCWSTR, pmachineid: *mut i32) -> ::windows::core::HRESULT, |
| pub Terminated: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub WTSSBX_GetUserExternalSession: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, username: ::windows::core::PCWSTR, domainname: ::windows::core::PCWSTR, applicationtype: ::windows::core::PCWSTR, redirectorinternalip: *const WTSSBX_IP_ADDRESS, psessionid: *mut u32, pmachineconnectinfo: *mut WTSSBX_MACHINE_CONNECT_INFO) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSVirtualChannel(::windows::core::IUnknown); |
| impl IWTSVirtualChannel { |
| pub unsafe fn Write<'a, P0>(&self, pbuffer: &[u8], preserved: P0) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, ::windows::core::IUnknown>>, |
| { |
| (::windows::core::Vtable::vtable(self).Write)(::windows::core::Vtable::as_raw(self), pbuffer.len() as _, ::core::mem::transmute(pbuffer.as_ptr()), preserved.into().abi()).ok() |
| } |
| pub unsafe fn Close(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).Close)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSVirtualChannel, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSVirtualChannel { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSVirtualChannel { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSVirtualChannel {} |
| impl ::core::fmt::Debug for IWTSVirtualChannel { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSVirtualChannel").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSVirtualChannel { |
| type Vtable = IWTSVirtualChannel_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSVirtualChannel { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xa1230207_d6a7_11d8_b9fd_000bdbd1f198); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSVirtualChannel_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub Write: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, cbsize: u32, pbuffer: *const u8, preserved: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| pub Close: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSVirtualChannelCallback(::windows::core::IUnknown); |
| impl IWTSVirtualChannelCallback { |
| pub unsafe fn OnDataReceived(&self, pbuffer: &[u8]) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnDataReceived)(::windows::core::Vtable::as_raw(self), pbuffer.len() as _, ::core::mem::transmute(pbuffer.as_ptr())).ok() |
| } |
| pub unsafe fn OnClose(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnClose)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSVirtualChannelCallback, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSVirtualChannelCallback { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSVirtualChannelCallback { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSVirtualChannelCallback {} |
| impl ::core::fmt::Debug for IWTSVirtualChannelCallback { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSVirtualChannelCallback").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSVirtualChannelCallback { |
| type Vtable = IWTSVirtualChannelCallback_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSVirtualChannelCallback { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xa1230204_d6a7_11d8_b9fd_000bdbd1f198); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSVirtualChannelCallback_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub OnDataReceived: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, cbsize: u32, pbuffer: *const u8) -> ::windows::core::HRESULT, |
| pub OnClose: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWTSVirtualChannelManager(::windows::core::IUnknown); |
| impl IWTSVirtualChannelManager { |
| pub unsafe fn CreateListener<'a, P0, P1>(&self, pszchannelname: P0, uflags: u32, plistenercallback: P1) -> ::windows::core::Result<IWTSListener> |
| where |
| P0: ::std::convert::Into<::windows::core::PCSTR>, |
| P1: ::std::convert::Into<::windows::core::InParam<'a, IWTSListenerCallback>>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).CreateListener)(::windows::core::Vtable::as_raw(self), pszchannelname.into(), uflags, plistenercallback.into().abi(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<IWTSListener>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWTSVirtualChannelManager, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWTSVirtualChannelManager { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWTSVirtualChannelManager { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWTSVirtualChannelManager {} |
| impl ::core::fmt::Debug for IWTSVirtualChannelManager { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWTSVirtualChannelManager").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWTSVirtualChannelManager { |
| type Vtable = IWTSVirtualChannelManager_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWTSVirtualChannelManager { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xa1230205_d6a7_11d8_b9fd_000bdbd1f198); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWTSVirtualChannelManager_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub CreateListener: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pszchannelname: ::windows::core::PCSTR, uflags: u32, plistenercallback: *mut ::core::ffi::c_void, pplistener: *mut *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWorkspace(::windows::core::IUnknown); |
| impl IWorkspace { |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn GetWorkspaceNames(&self) -> ::windows::core::Result<*mut super::Com::SAFEARRAY> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetWorkspaceNames)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<*mut super::Com::SAFEARRAY>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn StartRemoteApplication(&self, bstrworkspaceid: &::windows::core::BSTR, psaparams: *const super::Com::SAFEARRAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StartRemoteApplication)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute(psaparams)).ok() |
| } |
| pub unsafe fn GetProcessId(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetProcessId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWorkspace, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWorkspace { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWorkspace { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWorkspace {} |
| impl ::core::fmt::Debug for IWorkspace { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspace").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWorkspace { |
| type Vtable = IWorkspace_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWorkspace { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xb922bbb8_4c55_4fea_8496_beb0b44285e5); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspace_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| #[cfg(feature = "Win32_System_Com")] |
| pub GetWorkspaceNames: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, psawkspnames: *mut *mut super::Com::SAFEARRAY) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| GetWorkspaceNames: usize, |
| #[cfg(feature = "Win32_System_Com")] |
| pub StartRemoteApplication: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, psaparams: *const super::Com::SAFEARRAY) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| StartRemoteApplication: usize, |
| pub GetProcessId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pulprocessid: *mut u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWorkspace2(::windows::core::IUnknown); |
| impl IWorkspace2 { |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn GetWorkspaceNames(&self) -> ::windows::core::Result<*mut super::Com::SAFEARRAY> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.GetWorkspaceNames)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<*mut super::Com::SAFEARRAY>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn StartRemoteApplication(&self, bstrworkspaceid: &::windows::core::BSTR, psaparams: *const super::Com::SAFEARRAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.StartRemoteApplication)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute(psaparams)).ok() |
| } |
| pub unsafe fn GetProcessId(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.GetProcessId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn StartRemoteApplicationEx(&self, bstrworkspaceid: &::windows::core::BSTR, bstrrequestingappid: &::windows::core::BSTR, bstrrequestingappfamilyname: &::windows::core::BSTR, blaunchintoimmersiveclient: i16, bstrimmersiveclientactivationcontext: &::windows::core::BSTR, psaparams: *const super::Com::SAFEARRAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StartRemoteApplicationEx)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrrequestingappid), ::core::mem::transmute_copy(bstrrequestingappfamilyname), blaunchintoimmersiveclient, ::core::mem::transmute_copy(bstrimmersiveclientactivationcontext), ::core::mem::transmute(psaparams)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWorkspace2, ::windows::core::IUnknown, IWorkspace); |
| impl ::core::clone::Clone for IWorkspace2 { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWorkspace2 { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWorkspace2 {} |
| impl ::core::fmt::Debug for IWorkspace2 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspace2").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWorkspace2 { |
| type Vtable = IWorkspace2_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWorkspace2 { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x96d8d7cf_783e_4286_834c_ebc0e95f783c); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspace2_Vtbl { |
| pub base__: IWorkspace_Vtbl, |
| #[cfg(feature = "Win32_System_Com")] |
| pub StartRemoteApplicationEx: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrrequestingappid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrrequestingappfamilyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, blaunchintoimmersiveclient: i16, bstrimmersiveclientactivationcontext: ::core::mem::ManuallyDrop<::windows::core::BSTR>, psaparams: *const super::Com::SAFEARRAY) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| StartRemoteApplicationEx: usize, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWorkspace3(::windows::core::IUnknown); |
| impl IWorkspace3 { |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn GetWorkspaceNames(&self) -> ::windows::core::Result<*mut super::Com::SAFEARRAY> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.base__.GetWorkspaceNames)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<*mut super::Com::SAFEARRAY>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn StartRemoteApplication(&self, bstrworkspaceid: &::windows::core::BSTR, psaparams: *const super::Com::SAFEARRAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.base__.StartRemoteApplication)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute(psaparams)).ok() |
| } |
| pub unsafe fn GetProcessId(&self) -> ::windows::core::Result<u32> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.base__.GetProcessId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn StartRemoteApplicationEx(&self, bstrworkspaceid: &::windows::core::BSTR, bstrrequestingappid: &::windows::core::BSTR, bstrrequestingappfamilyname: &::windows::core::BSTR, blaunchintoimmersiveclient: i16, bstrimmersiveclientactivationcontext: &::windows::core::BSTR, psaparams: *const super::Com::SAFEARRAY) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.StartRemoteApplicationEx)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrrequestingappid), ::core::mem::transmute_copy(bstrrequestingappfamilyname), blaunchintoimmersiveclient, ::core::mem::transmute_copy(bstrimmersiveclientactivationcontext), ::core::mem::transmute(psaparams)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub unsafe fn GetClaimsToken2(&self, bstrclaimshint: &::windows::core::BSTR, bstruserhint: &::windows::core::BSTR, claimcookie: u32, hwndcreduiparent: u32, rectcreduiparent: super::super::Foundation::RECT) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetClaimsToken2)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrclaimshint), ::core::mem::transmute_copy(bstruserhint), claimcookie, hwndcreduiparent, ::core::mem::transmute(rectcreduiparent), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn SetClaimsToken(&self, bstraccesstoken: &::windows::core::BSTR, ullaccesstokenexpiration: u64, bstrrefreshtoken: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).SetClaimsToken)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstraccesstoken), ullaccesstokenexpiration, ::core::mem::transmute_copy(bstrrefreshtoken)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWorkspace3, ::windows::core::IUnknown, IWorkspace, IWorkspace2); |
| impl ::core::clone::Clone for IWorkspace3 { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWorkspace3 { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWorkspace3 {} |
| impl ::core::fmt::Debug for IWorkspace3 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspace3").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWorkspace3 { |
| type Vtable = IWorkspace3_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWorkspace3 { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x1becbe4a_d654_423b_afeb_be8d532c13c6); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspace3_Vtbl { |
| pub base__: IWorkspace2_Vtbl, |
| #[cfg(feature = "Win32_Foundation")] |
| pub GetClaimsToken2: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrclaimshint: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstruserhint: ::core::mem::ManuallyDrop<::windows::core::BSTR>, claimcookie: u32, hwndcreduiparent: u32, rectcreduiparent: super::super::Foundation::RECT, pbstraccesstoken: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_Foundation"))] |
| GetClaimsToken2: usize, |
| pub SetClaimsToken: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstraccesstoken: ::core::mem::ManuallyDrop<::windows::core::BSTR>, ullaccesstokenexpiration: u64, bstrrefreshtoken: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWorkspaceClientExt(::windows::core::IUnknown); |
| impl IWorkspaceClientExt { |
| pub unsafe fn GetResourceId(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetResourceId)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn GetResourceDisplayName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetResourceDisplayName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn IssueDisconnect(&self) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).IssueDisconnect)(::windows::core::Vtable::as_raw(self)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWorkspaceClientExt, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWorkspaceClientExt { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWorkspaceClientExt { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWorkspaceClientExt {} |
| impl ::core::fmt::Debug for IWorkspaceClientExt { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspaceClientExt").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWorkspaceClientExt { |
| type Vtable = IWorkspaceClientExt_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWorkspaceClientExt { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x12b952f4_41ca_4f21_a829_a6d07d9a16e5); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspaceClientExt_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetResourceId: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub GetResourceDisplayName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspacedisplayname: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub IssueDisconnect: unsafe extern "system" fn(this: *mut ::core::ffi::c_void) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWorkspaceRegistration(::windows::core::IUnknown); |
| impl IWorkspaceRegistration { |
| pub unsafe fn AddResource<'a, P0>(&self, punk: P0) -> ::windows::core::Result<u32> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWorkspaceClientExt>>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).AddResource)(::windows::core::Vtable::as_raw(self), punk.into().abi(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| pub unsafe fn RemoveResource(&self, dwcookieconnection: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RemoveResource)(::windows::core::Vtable::as_raw(self), dwcookieconnection).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWorkspaceRegistration, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWorkspaceRegistration { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWorkspaceRegistration { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWorkspaceRegistration {} |
| impl ::core::fmt::Debug for IWorkspaceRegistration { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspaceRegistration").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWorkspaceRegistration { |
| type Vtable = IWorkspaceRegistration_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWorkspaceRegistration { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xb922bbb8_4c55_4fea_8496_beb0b44285e6); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspaceRegistration_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub AddResource: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, punk: *mut ::core::ffi::c_void, pdwcookie: *mut u32) -> ::windows::core::HRESULT, |
| pub RemoveResource: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, dwcookieconnection: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWorkspaceRegistration2(::windows::core::IUnknown); |
| impl IWorkspaceRegistration2 { |
| pub unsafe fn AddResource<'a, P0>(&self, punk: P0) -> ::windows::core::Result<u32> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWorkspaceClientExt>>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.AddResource)(::windows::core::Vtable::as_raw(self), punk.into().abi(), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u32>(result__) |
| } |
| pub unsafe fn RemoveResource(&self, dwcookieconnection: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.RemoveResource)(::windows::core::Vtable::as_raw(self), dwcookieconnection).ok() |
| } |
| pub unsafe fn AddResourceEx<'a, P0>(&self, punk: P0, bstreventloguploadaddress: &::windows::core::BSTR, pdwcookie: *mut u32, correlationid: ::windows::core::GUID) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::InParam<'a, IWorkspaceClientExt>>, |
| { |
| (::windows::core::Vtable::vtable(self).AddResourceEx)(::windows::core::Vtable::as_raw(self), punk.into().abi(), ::core::mem::transmute_copy(bstreventloguploadaddress), ::core::mem::transmute(pdwcookie), ::core::mem::transmute(correlationid)).ok() |
| } |
| pub unsafe fn RemoveResourceEx(&self, dwcookieconnection: u32, correlationid: ::windows::core::GUID) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RemoveResourceEx)(::windows::core::Vtable::as_raw(self), dwcookieconnection, ::core::mem::transmute(correlationid)).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWorkspaceRegistration2, ::windows::core::IUnknown, IWorkspaceRegistration); |
| impl ::core::clone::Clone for IWorkspaceRegistration2 { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWorkspaceRegistration2 { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWorkspaceRegistration2 {} |
| impl ::core::fmt::Debug for IWorkspaceRegistration2 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspaceRegistration2").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWorkspaceRegistration2 { |
| type Vtable = IWorkspaceRegistration2_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWorkspaceRegistration2 { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xcf59f654_39bb_44d8_94d0_4635728957e9); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspaceRegistration2_Vtbl { |
| pub base__: IWorkspaceRegistration_Vtbl, |
| pub AddResourceEx: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, punk: *mut ::core::ffi::c_void, bstreventloguploadaddress: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pdwcookie: *mut u32, correlationid: ::windows::core::GUID) -> ::windows::core::HRESULT, |
| pub RemoveResourceEx: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, dwcookieconnection: u32, correlationid: ::windows::core::GUID) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct IWorkspaceReportMessage(::windows::core::IUnknown); |
| impl IWorkspaceReportMessage { |
| pub unsafe fn RegisterErrorLogMessage(&self, bstrmessage: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RegisterErrorLogMessage)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrmessage)).ok() |
| } |
| pub unsafe fn IsErrorMessageRegistered(&self, bstrwkspid: &::windows::core::BSTR, dwerrortype: u32, bstrerrormessagetype: &::windows::core::BSTR, dwerrorcode: u32) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).IsErrorMessageRegistered)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrwkspid), dwerrortype, ::core::mem::transmute_copy(bstrerrormessagetype), dwerrorcode, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn RegisterErrorEvent(&self, bstrwkspid: &::windows::core::BSTR, dwerrortype: u32, bstrerrormessagetype: &::windows::core::BSTR, dwerrorcode: u32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).RegisterErrorEvent)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrwkspid), dwerrortype, ::core::mem::transmute_copy(bstrerrormessagetype), dwerrorcode).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(IWorkspaceReportMessage, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for IWorkspaceReportMessage { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for IWorkspaceReportMessage { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for IWorkspaceReportMessage {} |
| impl ::core::fmt::Debug for IWorkspaceReportMessage { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspaceReportMessage").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for IWorkspaceReportMessage { |
| type Vtable = IWorkspaceReportMessage_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for IWorkspaceReportMessage { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xa7c06739_500f_4e8c_99a8_2bd6955899eb); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspaceReportMessage_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub RegisterErrorLogMessage: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrmessage: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub IsErrorMessageRegistered: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrwkspid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, dwerrortype: u32, bstrerrormessagetype: ::core::mem::ManuallyDrop<::windows::core::BSTR>, dwerrorcode: u32, pferrorexist: *mut i16) -> ::windows::core::HRESULT, |
| pub RegisterErrorEvent: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrwkspid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, dwerrortype: u32, bstrerrormessagetype: ::core::mem::ManuallyDrop<::windows::core::BSTR>, dwerrorcode: u32) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IWorkspaceResTypeRegistry(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IWorkspaceResTypeRegistry { |
| pub unsafe fn AddResourceType(&self, fmachinewide: i16, bstrfileextension: &::windows::core::BSTR, bstrlauncher: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).AddResourceType)(::windows::core::Vtable::as_raw(self), fmachinewide, ::core::mem::transmute_copy(bstrfileextension), ::core::mem::transmute_copy(bstrlauncher)).ok() |
| } |
| pub unsafe fn DeleteResourceType(&self, fmachinewide: i16, bstrfileextension: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DeleteResourceType)(::windows::core::Vtable::as_raw(self), fmachinewide, ::core::mem::transmute_copy(bstrfileextension)).ok() |
| } |
| #[doc = "*Required features: `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| pub unsafe fn GetRegisteredFileExtensions(&self, fmachinewide: i16) -> ::windows::core::Result<*mut super::Com::SAFEARRAY> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetRegisteredFileExtensions)(::windows::core::Vtable::as_raw(self), fmachinewide, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<*mut super::Com::SAFEARRAY>(result__) |
| } |
| pub unsafe fn GetResourceTypeInfo(&self, fmachinewide: i16, bstrfileextension: &::windows::core::BSTR) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetResourceTypeInfo)(::windows::core::Vtable::as_raw(self), fmachinewide, ::core::mem::transmute_copy(bstrfileextension), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn ModifyResourceType(&self, fmachinewide: i16, bstrfileextension: &::windows::core::BSTR, bstrlauncher: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ModifyResourceType)(::windows::core::Vtable::as_raw(self), fmachinewide, ::core::mem::transmute_copy(bstrfileextension), ::core::mem::transmute_copy(bstrlauncher)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IWorkspaceResTypeRegistry, ::windows::core::IUnknown, super::Com::IDispatch); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IWorkspaceResTypeRegistry { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IWorkspaceResTypeRegistry { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IWorkspaceResTypeRegistry {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IWorkspaceResTypeRegistry { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspaceResTypeRegistry").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IWorkspaceResTypeRegistry { |
| type Vtable = IWorkspaceResTypeRegistry_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IWorkspaceResTypeRegistry { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x1d428c79_6e2e_4351_a361_c0401a03a0ba); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspaceResTypeRegistry_Vtbl { |
| pub base__: super::Com::IDispatch_Vtbl, |
| pub AddResourceType: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, fmachinewide: i16, bstrfileextension: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrlauncher: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub DeleteResourceType: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, fmachinewide: i16, bstrfileextension: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| #[cfg(feature = "Win32_System_Com")] |
| pub GetRegisteredFileExtensions: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, fmachinewide: i16, psafileextensions: *mut *mut super::Com::SAFEARRAY) -> ::windows::core::HRESULT, |
| #[cfg(not(feature = "Win32_System_Com"))] |
| GetRegisteredFileExtensions: usize, |
| pub GetResourceTypeInfo: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, fmachinewide: i16, bstrfileextension: ::core::mem::ManuallyDrop<::windows::core::BSTR>, pbstrlauncher: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub ModifyResourceType: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, fmachinewide: i16, bstrfileextension: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrlauncher: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IWorkspaceScriptable(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IWorkspaceScriptable { |
| pub unsafe fn DisconnectWorkspace(&self, bstrworkspaceid: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DisconnectWorkspace)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid)).ok() |
| } |
| pub unsafe fn StartWorkspace(&self, bstrworkspaceid: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR, bstrpassword: &::windows::core::BSTR, bstrworkspaceparams: &::windows::core::BSTR, ltimeout: i32, lflags: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StartWorkspace)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrusername), ::core::mem::transmute_copy(bstrpassword), ::core::mem::transmute_copy(bstrworkspaceparams), ltimeout, lflags).ok() |
| } |
| pub unsafe fn IsWorkspaceCredentialSpecified(&self, bstrworkspaceid: &::windows::core::BSTR, bcountunauthenticatedcredentials: i16) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).IsWorkspaceCredentialSpecified)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), bcountunauthenticatedcredentials, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn IsWorkspaceSSOEnabled(&self) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).IsWorkspaceSSOEnabled)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn ClearWorkspaceCredential(&self, bstrworkspaceid: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ClearWorkspaceCredential)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid)).ok() |
| } |
| pub unsafe fn OnAuthenticated(&self, bstrworkspaceid: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).OnAuthenticated)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrusername)).ok() |
| } |
| pub unsafe fn DisconnectWorkspaceByFriendlyName(&self, bstrworkspacefriendlyname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).DisconnectWorkspaceByFriendlyName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspacefriendlyname)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IWorkspaceScriptable, ::windows::core::IUnknown, super::Com::IDispatch); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IWorkspaceScriptable { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IWorkspaceScriptable { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IWorkspaceScriptable {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IWorkspaceScriptable { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspaceScriptable").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IWorkspaceScriptable { |
| type Vtable = IWorkspaceScriptable_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IWorkspaceScriptable { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xefea49a2_dda5_429d_8f42_b23b92c4c347); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspaceScriptable_Vtbl { |
| pub base__: super::Com::IDispatch_Vtbl, |
| pub DisconnectWorkspace: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub StartWorkspace: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrusername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrpassword: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrworkspaceparams: ::core::mem::ManuallyDrop<::windows::core::BSTR>, ltimeout: i32, lflags: i32) -> ::windows::core::HRESULT, |
| pub IsWorkspaceCredentialSpecified: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bcountunauthenticatedcredentials: i16, pbcredexist: *mut i16) -> ::windows::core::HRESULT, |
| pub IsWorkspaceSSOEnabled: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pbssoenabled: *mut i16) -> ::windows::core::HRESULT, |
| pub ClearWorkspaceCredential: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub OnAuthenticated: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrusername: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub DisconnectWorkspaceByFriendlyName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspacefriendlyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IWorkspaceScriptable2(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IWorkspaceScriptable2 { |
| pub unsafe fn DisconnectWorkspace(&self, bstrworkspaceid: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.DisconnectWorkspace)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid)).ok() |
| } |
| pub unsafe fn StartWorkspace(&self, bstrworkspaceid: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR, bstrpassword: &::windows::core::BSTR, bstrworkspaceparams: &::windows::core::BSTR, ltimeout: i32, lflags: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.StartWorkspace)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrusername), ::core::mem::transmute_copy(bstrpassword), ::core::mem::transmute_copy(bstrworkspaceparams), ltimeout, lflags).ok() |
| } |
| pub unsafe fn IsWorkspaceCredentialSpecified(&self, bstrworkspaceid: &::windows::core::BSTR, bcountunauthenticatedcredentials: i16) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.IsWorkspaceCredentialSpecified)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), bcountunauthenticatedcredentials, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn IsWorkspaceSSOEnabled(&self) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.IsWorkspaceSSOEnabled)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn ClearWorkspaceCredential(&self, bstrworkspaceid: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.ClearWorkspaceCredential)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid)).ok() |
| } |
| pub unsafe fn OnAuthenticated(&self, bstrworkspaceid: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.OnAuthenticated)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrusername)).ok() |
| } |
| pub unsafe fn DisconnectWorkspaceByFriendlyName(&self, bstrworkspacefriendlyname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.DisconnectWorkspaceByFriendlyName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspacefriendlyname)).ok() |
| } |
| pub unsafe fn StartWorkspaceEx(&self, bstrworkspaceid: &::windows::core::BSTR, bstrworkspacefriendlyname: &::windows::core::BSTR, bstrredirectorname: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR, bstrpassword: &::windows::core::BSTR, bstrappcontainer: &::windows::core::BSTR, bstrworkspaceparams: &::windows::core::BSTR, ltimeout: i32, lflags: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StartWorkspaceEx)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrworkspacefriendlyname), ::core::mem::transmute_copy(bstrredirectorname), ::core::mem::transmute_copy(bstrusername), ::core::mem::transmute_copy(bstrpassword), ::core::mem::transmute_copy(bstrappcontainer), ::core::mem::transmute_copy(bstrworkspaceparams), ltimeout, lflags).ok() |
| } |
| pub unsafe fn ResourceDismissed(&self, bstrworkspaceid: &::windows::core::BSTR, bstrworkspacefriendlyname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).ResourceDismissed)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrworkspacefriendlyname)).ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IWorkspaceScriptable2, ::windows::core::IUnknown, super::Com::IDispatch, IWorkspaceScriptable); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IWorkspaceScriptable2 { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IWorkspaceScriptable2 { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IWorkspaceScriptable2 {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IWorkspaceScriptable2 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspaceScriptable2").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IWorkspaceScriptable2 { |
| type Vtable = IWorkspaceScriptable2_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IWorkspaceScriptable2 { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xefea49a2_dda5_429d_8f42_b33ba2c4c348); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspaceScriptable2_Vtbl { |
| pub base__: IWorkspaceScriptable_Vtbl, |
| pub StartWorkspaceEx: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrworkspacefriendlyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrredirectorname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrusername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrpassword: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrappcontainer: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrworkspaceparams: ::core::mem::ManuallyDrop<::windows::core::BSTR>, ltimeout: i32, lflags: i32) -> ::windows::core::HRESULT, |
| pub ResourceDismissed: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrworkspacefriendlyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct IWorkspaceScriptable3(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl IWorkspaceScriptable3 { |
| pub unsafe fn DisconnectWorkspace(&self, bstrworkspaceid: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.base__.DisconnectWorkspace)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid)).ok() |
| } |
| pub unsafe fn StartWorkspace(&self, bstrworkspaceid: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR, bstrpassword: &::windows::core::BSTR, bstrworkspaceparams: &::windows::core::BSTR, ltimeout: i32, lflags: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.base__.StartWorkspace)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrusername), ::core::mem::transmute_copy(bstrpassword), ::core::mem::transmute_copy(bstrworkspaceparams), ltimeout, lflags).ok() |
| } |
| pub unsafe fn IsWorkspaceCredentialSpecified(&self, bstrworkspaceid: &::windows::core::BSTR, bcountunauthenticatedcredentials: i16) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.base__.IsWorkspaceCredentialSpecified)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), bcountunauthenticatedcredentials, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn IsWorkspaceSSOEnabled(&self) -> ::windows::core::Result<i16> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.base__.IsWorkspaceSSOEnabled)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<i16>(result__) |
| } |
| pub unsafe fn ClearWorkspaceCredential(&self, bstrworkspaceid: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.base__.ClearWorkspaceCredential)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid)).ok() |
| } |
| pub unsafe fn OnAuthenticated(&self, bstrworkspaceid: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.base__.OnAuthenticated)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrusername)).ok() |
| } |
| pub unsafe fn DisconnectWorkspaceByFriendlyName(&self, bstrworkspacefriendlyname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.base__.DisconnectWorkspaceByFriendlyName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspacefriendlyname)).ok() |
| } |
| pub unsafe fn StartWorkspaceEx(&self, bstrworkspaceid: &::windows::core::BSTR, bstrworkspacefriendlyname: &::windows::core::BSTR, bstrredirectorname: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR, bstrpassword: &::windows::core::BSTR, bstrappcontainer: &::windows::core::BSTR, bstrworkspaceparams: &::windows::core::BSTR, ltimeout: i32, lflags: i32) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.StartWorkspaceEx)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrworkspacefriendlyname), ::core::mem::transmute_copy(bstrredirectorname), ::core::mem::transmute_copy(bstrusername), ::core::mem::transmute_copy(bstrpassword), ::core::mem::transmute_copy(bstrappcontainer), ::core::mem::transmute_copy(bstrworkspaceparams), ltimeout, lflags).ok() |
| } |
| pub unsafe fn ResourceDismissed(&self, bstrworkspaceid: &::windows::core::BSTR, bstrworkspacefriendlyname: &::windows::core::BSTR) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).base__.ResourceDismissed)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute_copy(bstrworkspaceid), ::core::mem::transmute_copy(bstrworkspacefriendlyname)).ok() |
| } |
| pub unsafe fn StartWorkspaceEx2(&self, bstrworkspaceid: &::windows::core::BSTR, bstrworkspacefriendlyname: &::windows::core::BSTR, bstrredirectorname: &::windows::core::BSTR, bstrusername: &::windows::core::BSTR, bstrpassword: &::windows::core::BSTR, bstrappcontainer: &::windows::core::BSTR, bstrworkspaceparams: &::windows::core::BSTR, ltimeout: i32, lflags: i32, bstreventloguploadaddress: &::windows::core::BSTR, correlationid: ::windows::core::GUID) -> ::windows::core::Result<()> { |
| (::windows::core::Vtable::vtable(self).StartWorkspaceEx2)( |
| ::windows::core::Vtable::as_raw(self), |
| ::core::mem::transmute_copy(bstrworkspaceid), |
| ::core::mem::transmute_copy(bstrworkspacefriendlyname), |
| ::core::mem::transmute_copy(bstrredirectorname), |
| ::core::mem::transmute_copy(bstrusername), |
| ::core::mem::transmute_copy(bstrpassword), |
| ::core::mem::transmute_copy(bstrappcontainer), |
| ::core::mem::transmute_copy(bstrworkspaceparams), |
| ltimeout, |
| lflags, |
| ::core::mem::transmute_copy(bstreventloguploadaddress), |
| ::core::mem::transmute(correlationid), |
| ) |
| .ok() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(IWorkspaceScriptable3, ::windows::core::IUnknown, super::Com::IDispatch, IWorkspaceScriptable, IWorkspaceScriptable2); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for IWorkspaceScriptable3 { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for IWorkspaceScriptable3 { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for IWorkspaceScriptable3 {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for IWorkspaceScriptable3 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("IWorkspaceScriptable3").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for IWorkspaceScriptable3 { |
| type Vtable = IWorkspaceScriptable3_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for IWorkspaceScriptable3 { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x531e6512_2cbf_4bd2_80a5_d90a71636a9a); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct IWorkspaceScriptable3_Vtbl { |
| pub base__: IWorkspaceScriptable2_Vtbl, |
| pub StartWorkspaceEx2: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, bstrworkspaceid: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrworkspacefriendlyname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrredirectorname: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrusername: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrpassword: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrappcontainer: ::core::mem::ManuallyDrop<::windows::core::BSTR>, bstrworkspaceparams: ::core::mem::ManuallyDrop<::windows::core::BSTR>, ltimeout: i32, lflags: i32, bstreventloguploadaddress: ::core::mem::ManuallyDrop<::windows::core::BSTR>, correlationid: ::windows::core::GUID) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ItsPubPlugin(::windows::core::IUnknown); |
| impl ItsPubPlugin { |
| pub unsafe fn GetResourceList<'a, P0>(&self, userid: P0, pceapplistsize: *mut i32, resourcelist: *mut *mut pluginResource) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).GetResourceList)(::windows::core::Vtable::as_raw(self), userid.into(), ::core::mem::transmute(pceapplistsize), ::core::mem::transmute(resourcelist)).ok() |
| } |
| pub unsafe fn GetResource<'a, P0>(&self, alias: P0, flags: i32) -> ::windows::core::Result<pluginResource> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetResource)(::windows::core::Vtable::as_raw(self), alias.into(), flags, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<pluginResource>(result__) |
| } |
| pub unsafe fn GetCacheLastUpdateTime(&self) -> ::windows::core::Result<u64> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetCacheLastUpdateTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u64>(result__) |
| } |
| pub unsafe fn pluginName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).pluginName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn pluginVersion(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).pluginVersion)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn ResolveResource<'a, P0, P1>(&self, resourcetype: *mut u32, resourcelocation: ::windows::core::PWSTR, endpointname: ::windows::core::PWSTR, userid: P0, alias: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).ResolveResource)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(resourcetype), ::core::mem::transmute(resourcelocation), ::core::mem::transmute(endpointname), userid.into(), alias.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ItsPubPlugin, ::windows::core::IUnknown); |
| impl ::core::clone::Clone for ItsPubPlugin { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ItsPubPlugin { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ItsPubPlugin {} |
| impl ::core::fmt::Debug for ItsPubPlugin { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ItsPubPlugin").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ItsPubPlugin { |
| type Vtable = ItsPubPlugin_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ItsPubPlugin { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x70c04b05_f347_412b_822f_36c99c54ca45); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ItsPubPlugin_Vtbl { |
| pub base__: ::windows::core::IUnknown_Vtbl, |
| pub GetResourceList: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, userid: ::windows::core::PCWSTR, pceapplistsize: *mut i32, resourcelist: *mut *mut pluginResource) -> ::windows::core::HRESULT, |
| pub GetResource: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, alias: ::windows::core::PCWSTR, flags: i32, resource: *mut pluginResource) -> ::windows::core::HRESULT, |
| pub GetCacheLastUpdateTime: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, lastupdatetime: *mut u64) -> ::windows::core::HRESULT, |
| pub pluginName: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub pluginVersion: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, pval: *mut ::core::mem::ManuallyDrop<::windows::core::BSTR>) -> ::windows::core::HRESULT, |
| pub ResolveResource: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, resourcetype: *mut u32, resourcelocation: ::windows::core::PWSTR, endpointname: ::windows::core::PWSTR, userid: ::windows::core::PCWSTR, alias: ::windows::core::PCWSTR) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| pub struct ItsPubPlugin2(::windows::core::IUnknown); |
| impl ItsPubPlugin2 { |
| pub unsafe fn GetResourceList<'a, P0>(&self, userid: P0, pceapplistsize: *mut i32, resourcelist: *mut *mut pluginResource) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.GetResourceList)(::windows::core::Vtable::as_raw(self), userid.into(), ::core::mem::transmute(pceapplistsize), ::core::mem::transmute(resourcelist)).ok() |
| } |
| pub unsafe fn GetResource<'a, P0>(&self, alias: P0, flags: i32) -> ::windows::core::Result<pluginResource> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.GetResource)(::windows::core::Vtable::as_raw(self), alias.into(), flags, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<pluginResource>(result__) |
| } |
| pub unsafe fn GetCacheLastUpdateTime(&self) -> ::windows::core::Result<u64> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.GetCacheLastUpdateTime)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<u64>(result__) |
| } |
| pub unsafe fn pluginName(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.pluginName)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn pluginVersion(&self) -> ::windows::core::Result<::windows::core::BSTR> { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).base__.pluginVersion)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<::windows::core::BSTR>(result__) |
| } |
| pub unsafe fn ResolveResource<'a, P0, P1>(&self, resourcetype: *mut u32, resourcelocation: ::windows::core::PWSTR, endpointname: ::windows::core::PWSTR, userid: P0, alias: P1) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).base__.ResolveResource)(::windows::core::Vtable::as_raw(self), ::core::mem::transmute(resourcetype), ::core::mem::transmute(resourcelocation), ::core::mem::transmute(endpointname), userid.into(), alias.into()).ok() |
| } |
| pub unsafe fn GetResource2List<'a, P0>(&self, userid: P0, pceapplistsize: *mut i32, resourcelist: *mut *mut pluginResource2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).GetResource2List)(::windows::core::Vtable::as_raw(self), userid.into(), ::core::mem::transmute(pceapplistsize), ::core::mem::transmute(resourcelist)).ok() |
| } |
| pub unsafe fn GetResource2<'a, P0>(&self, alias: P0, flags: i32) -> ::windows::core::Result<pluginResource2> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| let mut result__ = ::core::mem::MaybeUninit::zeroed(); |
| (::windows::core::Vtable::vtable(self).GetResource2)(::windows::core::Vtable::as_raw(self), alias.into(), flags, ::core::mem::transmute(result__.as_mut_ptr())).from_abi::<pluginResource2>(result__) |
| } |
| pub unsafe fn ResolvePersonalDesktop<'a, P0, P1>(&self, userid: P0, poolid: P1, epdresolutiontype: TSPUB_PLUGIN_PD_RESOLUTION_TYPE, ppdassignmenttype: *mut TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE, endpointname: ::windows::core::PWSTR) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).ResolvePersonalDesktop)(::windows::core::Vtable::as_raw(self), userid.into(), poolid.into(), epdresolutiontype, ::core::mem::transmute(ppdassignmenttype), ::core::mem::transmute(endpointname)).ok() |
| } |
| pub unsafe fn DeletePersonalDesktopAssignment<'a, P0, P1, P2>(&self, userid: P0, poolid: P1, endpointname: P2) -> ::windows::core::Result<()> |
| where |
| P0: ::std::convert::Into<::windows::core::PCWSTR>, |
| P1: ::std::convert::Into<::windows::core::PCWSTR>, |
| P2: ::std::convert::Into<::windows::core::PCWSTR>, |
| { |
| (::windows::core::Vtable::vtable(self).DeletePersonalDesktopAssignment)(::windows::core::Vtable::as_raw(self), userid.into(), poolid.into(), endpointname.into()).ok() |
| } |
| } |
| ::windows::core::interface_hierarchy!(ItsPubPlugin2, ::windows::core::IUnknown, ItsPubPlugin); |
| impl ::core::clone::Clone for ItsPubPlugin2 { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| impl ::core::cmp::PartialEq for ItsPubPlugin2 { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| impl ::core::cmp::Eq for ItsPubPlugin2 {} |
| impl ::core::fmt::Debug for ItsPubPlugin2 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("ItsPubPlugin2").field(&self.0).finish() |
| } |
| } |
| unsafe impl ::windows::core::Vtable for ItsPubPlugin2 { |
| type Vtable = ItsPubPlugin2_Vtbl; |
| } |
| unsafe impl ::windows::core::Interface for ItsPubPlugin2 { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xfa4ce418_aad7_4ec6_bad1_0a321ba465d5); |
| } |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct ItsPubPlugin2_Vtbl { |
| pub base__: ItsPubPlugin_Vtbl, |
| pub GetResource2List: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, userid: ::windows::core::PCWSTR, pceapplistsize: *mut i32, resourcelist: *mut *mut pluginResource2) -> ::windows::core::HRESULT, |
| pub GetResource2: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, alias: ::windows::core::PCWSTR, flags: i32, resource: *mut pluginResource2) -> ::windows::core::HRESULT, |
| pub ResolvePersonalDesktop: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, userid: ::windows::core::PCWSTR, poolid: ::windows::core::PCWSTR, epdresolutiontype: TSPUB_PLUGIN_PD_RESOLUTION_TYPE, ppdassignmenttype: *mut TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE, endpointname: ::windows::core::PWSTR) -> ::windows::core::HRESULT, |
| pub DeletePersonalDesktopAssignment: unsafe extern "system" fn(this: *mut ::core::ffi::c_void, userid: ::windows::core::PCWSTR, poolid: ::windows::core::PCWSTR, endpointname: ::windows::core::PCWSTR) -> ::windows::core::HRESULT, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_System_Com\"`*"] |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(transparent)] |
| pub struct _ITSWkspEvents(::windows::core::IUnknown); |
| #[cfg(feature = "Win32_System_Com")] |
| impl _ITSWkspEvents {} |
| #[cfg(feature = "Win32_System_Com")] |
| ::windows::core::interface_hierarchy!(_ITSWkspEvents, ::windows::core::IUnknown, super::Com::IDispatch); |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::clone::Clone for _ITSWkspEvents { |
| fn clone(&self) -> Self { |
| Self(self.0.clone()) |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::PartialEq for _ITSWkspEvents { |
| fn eq(&self, other: &Self) -> bool { |
| self.0 == other.0 |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::cmp::Eq for _ITSWkspEvents {} |
| #[cfg(feature = "Win32_System_Com")] |
| impl ::core::fmt::Debug for _ITSWkspEvents { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("_ITSWkspEvents").field(&self.0).finish() |
| } |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Vtable for _ITSWkspEvents { |
| type Vtable = _ITSWkspEvents_Vtbl; |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| unsafe impl ::windows::core::Interface for _ITSWkspEvents { |
| const IID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xb922bbb8_4c55_4fea_8496_beb0b44285e9); |
| } |
| #[cfg(feature = "Win32_System_Com")] |
| #[repr(C)] |
| #[doc(hidden)] |
| pub struct _ITSWkspEvents_Vtbl { |
| pub base__: super::Com::IDispatch_Vtbl, |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const ACQUIRE_TARGET_LOCK_TIMEOUT: u32 = 300000u32; |
| pub const ADsTSUserEx: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xe2e9cae6_1e7b_4b8e_babd_e9bf6292ac29); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_BUFFER_SIZE: u32 = 65535u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_CHUNK_LENGTH: u32 = 1600u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_EVENT_CONNECTED: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_EVENT_DATA_RECEIVED: u32 = 10u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_EVENT_DISCONNECTED: u32 = 3u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_EVENT_INITIALIZED: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_EVENT_TERMINATED: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_EVENT_V1_CONNECTED: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_EVENT_WRITE_CANCELLED: u32 = 12u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_EVENT_WRITE_COMPLETE: u32 = 11u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_FLAG_FAIL: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_FLAG_FIRST: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_FLAG_LAST: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_FLAG_MIDDLE: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_MAX_COUNT: u32 = 30u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_NAME_LEN: u32 = 7u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_COMPRESS: u32 = 4194304u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_COMPRESS_RDP: u32 = 8388608u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_ENCRYPT_CS: u32 = 268435456u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_ENCRYPT_RDP: u32 = 1073741824u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_ENCRYPT_SC: u32 = 536870912u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_INITIALIZED: u32 = 2147483648u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_PRI_HIGH: u32 = 134217728u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_PRI_LOW: u32 = 33554432u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_PRI_MED: u32 = 67108864u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_REMOTE_CONTROL_PERSISTENT: u32 = 1048576u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_OPTION_SHOW_PROTOCOL: u32 = 2097152u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_ALREADY_CONNECTED: u32 = 3u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_ALREADY_INITIALIZED: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_ALREADY_OPEN: u32 = 14u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_BAD_CHANNEL: u32 = 6u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_BAD_CHANNEL_HANDLE: u32 = 7u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_BAD_INIT_HANDLE: u32 = 9u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_BAD_PROC: u32 = 11u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_INITIALIZATION_ERROR: u32 = 20u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_INVALID_INSTANCE: u32 = 18u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_NOT_CONNECTED: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_NOT_INITIALIZED: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_NOT_IN_VIRTUALCHANNELENTRY: u32 = 15u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_NOT_OPEN: u32 = 10u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_NO_BUFFER: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_NO_MEMORY: u32 = 12u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_NULL_DATA: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_OK: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_TOO_MANY_CHANNELS: u32 = 5u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_UNKNOWN_CHANNEL_NAME: u32 = 13u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_UNSUPPORTED_VERSION: u32 = 19u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CHANNEL_RC_ZERO_LENGTH: u32 = 17u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CLIENTADDRESS_LENGTH: u32 = 30u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CLIENTNAME_LENGTH: u32 = 20u32; |
| pub const CONNECTION_PROPERTY_CURSOR_BLINK_DISABLED: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x4b150580_fea4_4d3c_9de4_7433a66618f7); |
| pub const CONNECTION_PROPERTY_IDLE_TIME_WARNING: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x693f7ff5_0c4e_4d17_b8e0_1f70325e5d58); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_ADMINMESSAGERECEIVED: u32 = 760u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_AUTORECONNECTED: u32 = 756u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_AUTORECONNECTING: u32 = 755u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_CONNECTED: u32 = 751u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_CONNECTING: u32 = 750u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_DIALOGDISMISSED: u32 = 758u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_DIALOGDISPLAYING: u32 = 757u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_DISCONNECTED: u32 = 753u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_KEYCOMBINATIONPRESSED: u32 = 761u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_LOGINCOMPLETED: u32 = 752u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_NETWORKSTATUSCHANGED: u32 = 759u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_REMOTEDESKTOPSIZECHANGED: u32 = 762u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_STATUSCHANGED: u32 = 754u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_AX_TOUCHPOINTERCURSORMOVED: u32 = 800u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_APPLY_SETTINGS: u32 = 722u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_ATTACH_EVENT: u32 = 706u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_CONNECT: u32 = 701u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_DELETE_SAVED_CREDENTIALS: u32 = 704u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_DETACH_EVENT: u32 = 707u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_DISCONNECT: u32 = 702u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_EXECUTE_REMOTE_ACTION: u32 = 732u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_RDPPROPERTY: u32 = 721u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_GET_SNAPSHOT: u32 = 733u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_RECONNECT: u32 = 703u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_RESUME_SCREEN_UPDATES: u32 = 731u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_RETRIEVE_SETTINGS: u32 = 723u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_SET_RDPPROPERTY: u32 = 720u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_SUSPEND_SCREEN_UPDATES: u32 = 730u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_METHOD_REMOTEDESKTOPCLIENT_UPDATE_SESSION_DISPLAYSETTINGS: u32 = 705u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_PROP_REMOTEDESKTOPCLIENT_ACTIONS: u32 = 711u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_PROP_REMOTEDESKTOPCLIENT_SETTINGS: u32 = 710u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_ENABLED: u32 = 740u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_EVENTSENABLED: u32 = 741u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCHPOINTER_POINTERSPEED: u32 = 742u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DISPID_PROP_REMOTEDESKTOPCLIENT_TOUCH_POINTER: u32 = 712u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DOMAIN_LENGTH: u32 = 17u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const FORCE_REJOIN: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const FORCE_REJOIN_IN_CLUSTERMODE: u32 = 3u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const KEEP_EXISTING_SESSIONS: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MAX_DATE_TIME_LENGTH: u32 = 56u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MAX_ELAPSED_TIME_LENGTH: u32 = 15u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MAX_POLICY_ATTRIBUTES: u32 = 20u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MaxAppName_Len: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MaxDomainName_Len: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MaxFQDN_Len: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MaxFarm_Len: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MaxNetBiosName_Len: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MaxNumOfExposed_IPs: u32 = 12u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const MaxUserName_Len: u32 = 104u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const NOTIFY_FOR_ALL_SESSIONS: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const NOTIFY_FOR_THIS_SESSION: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PLUGIN_CAPABILITY_EXTERNAL_REDIRECTION: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PRODUCTINFO_COMPANYNAME_LENGTH: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PRODUCTINFO_PRODUCTID_LENGTH: u32 = 4u32; |
| pub const PROPERTY_DYNAMIC_TIME_ZONE_INFORMATION: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x0cdfd28e_d0b9_4c1f_a5eb_6d1f6c6535b9); |
| pub const PROPERTY_TYPE_ENABLE_UNIVERSAL_APPS_FOR_CUSTOM_SHELL: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xed2c3fda_338d_4d3f_81a3_e767310d908e); |
| pub const PROPERTY_TYPE_GET_FAST_RECONNECT: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x6212d757_0043_4862_99c3_9f3059ac2a3b); |
| pub const PROPERTY_TYPE_GET_FAST_RECONNECT_USER_SID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x197c427a_0135_4b6d_9c5e_e6579a0ab625); |
| pub const RDCLIENT_BITMAP_RENDER_SERVICE: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xe4cc08cb_942e_4b19_8504_bd5a89a747f5); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const REMOTECONTROL_KBDALT_HOTKEY: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const REMOTECONTROL_KBDCTRL_HOTKEY: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const REMOTECONTROL_KBDSHIFT_HOTKEY: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RENDER_HINT_CLEAR: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RENDER_HINT_MAPPEDWINDOW: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RENDER_HINT_VIDEO: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RESERVED_FOR_LEGACY: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RFX_CLIENT_ID_LENGTH: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RFX_GFX_MAX_SUPPORTED_MONITORS: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RFX_GFX_MSG_PREFIX: u32 = 48u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RFX_GFX_MSG_PREFIX_MASK: u32 = 48u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RFX_RDP_MSG_PREFIX: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const SB_SYNCH_CONFLICT_MAX_WRITE_ATTEMPTS: u32 = 100u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const SINGLE_SESSION: u32 = 1u32; |
| pub const TSUserExInterfaces: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x0910dd01_df8c_11d1_ae27_00c04fa35813); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TS_VC_LISTENER_STATIC_CHANNEL: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const USERNAME_LENGTH: u32 = 20u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VALIDATIONINFORMATION_HARDWAREID_LENGTH: u32 = 20u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VALIDATIONINFORMATION_LICENSE_LENGTH: u32 = 16384u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VIRTUAL_CHANNEL_VERSION_WIN2000: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WINSTATIONNAME_LENGTH: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WKS_FLAG_CLEAR_CREDS_ON_LAST_RESOURCE: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WKS_FLAG_CREDS_AUTHENTICATED: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WKS_FLAG_PASSWORD_ENCRYPTED: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_CLIENTADDRESS_LENGTH: u32 = 30u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_CLIENTNAME_LENGTH: u32 = 20u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_CLIENT_PRODUCT_ID_LENGTH: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_DEVICE_NAME_LENGTH: u32 = 19u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_DIRECTORY_LENGTH: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_DOMAIN_LENGTH: u32 = 255u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_DRIVER_NAME_LENGTH: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_IMEFILENAME_LENGTH: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_INITIALPROGRAM_LENGTH: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_KEY_EXCHANGE_ALG_DH: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_KEY_EXCHANGE_ALG_RSA: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_LICENSE_PREAMBLE_VERSION: u32 = 3u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_LICENSE_PROTOCOL_VERSION: u32 = 65536u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_MAX_CACHE_RESERVED: u32 = 20u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_MAX_COUNTERS: u32 = 100u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_MAX_DISPLAY_IOCTL_DATA: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_MAX_PROTOCOL_CACHE: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_MAX_RESERVED: u32 = 100u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PASSWORD_LENGTH: u32 = 255u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_DISABLE_CURSORSETTINGS: u32 = 64u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_DISABLE_CURSOR_SHADOW: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_DISABLE_FULLWINDOWDRAG: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_DISABLE_MENUANIMATIONS: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_DISABLE_NOTHING: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_DISABLE_THEMING: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_DISABLE_WALLPAPER: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_ENABLE_DESKTOP_COMPOSITION: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_ENABLE_ENHANCED_GRAPHICS: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PERF_ENABLE_FONT_SMOOTHING: u32 = 128u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_PROTOCOL_NAME_LENGTH: u32 = 8u32; |
| pub const WRDS_SERVICE_ID_GRAPHICS_GUID: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xd2993f4d_02cf_4280_8c48_1624b44f8706); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_USERNAME_LENGTH: u32 = 255u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_VALUE_TYPE_BINARY: u32 = 3u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_VALUE_TYPE_GUID: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_VALUE_TYPE_STRING: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_VALUE_TYPE_ULONG: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRdsGraphicsChannels_LossyChannelMaxMessageSize: u32 = 988u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CHANNEL_OPTION_DYNAMIC: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CHANNEL_OPTION_DYNAMIC_NO_COMPRESS: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CHANNEL_OPTION_DYNAMIC_PRI_HIGH: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CHANNEL_OPTION_DYNAMIC_PRI_LOW: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CHANNEL_OPTION_DYNAMIC_PRI_MED: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CHANNEL_OPTION_DYNAMIC_PRI_REAL: u32 = 6u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CLIENTADDRESS_LENGTH: u32 = 30u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CLIENTNAME_LENGTH: u32 = 20u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CLIENT_PRODUCT_ID_LENGTH: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_COMMENT_LENGTH: u32 = 60u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CURRENT_SESSION: u32 = 4294967295u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_DEVICE_NAME_LENGTH: u32 = 19u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_DIRECTORY_LENGTH: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_DOMAIN_LENGTH: u32 = 255u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_DRIVER_NAME_LENGTH: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_DRIVE_LENGTH: u32 = 3u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_ALL: u32 = 2147483647u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_CONNECT: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_CREATE: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_DELETE: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_DISCONNECT: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_FLUSH: u32 = 2147483648u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_LICENSE: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_LOGOFF: u32 = 64u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_LOGON: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_NONE: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_RENAME: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_EVENT_STATECHANGE: u32 = 128u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_IMEFILENAME_LENGTH: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_INITIALPROGRAM_LENGTH: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_KEY_EXCHANGE_ALG_DH: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_KEY_EXCHANGE_ALG_RSA: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LICENSE_PREAMBLE_VERSION: u32 = 3u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LICENSE_PROTOCOL_VERSION: u32 = 65536u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LISTENER_CREATE: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LISTENER_NAME_LENGTH: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LISTENER_UPDATE: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_MAX_CACHE_RESERVED: u32 = 20u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_MAX_COUNTERS: u32 = 100u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_MAX_DISPLAY_IOCTL_DATA: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_MAX_PROTOCOL_CACHE: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_MAX_RESERVED: u32 = 100u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PASSWORD_LENGTH: u32 = 255u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_DISABLE_CURSORSETTINGS: u32 = 64u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_DISABLE_CURSOR_SHADOW: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_DISABLE_FULLWINDOWDRAG: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_DISABLE_MENUANIMATIONS: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_DISABLE_NOTHING: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_DISABLE_THEMING: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_DISABLE_WALLPAPER: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_ENABLE_DESKTOP_COMPOSITION: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_ENABLE_ENHANCED_GRAPHICS: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PERF_ENABLE_FONT_SMOOTHING: u32 = 128u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PROCESS_INFO_LEVEL_0: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PROCESS_INFO_LEVEL_1: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PROPERTY_DEFAULT_CONFIG: ::windows::core::PCWSTR = ::windows::w!("DefaultConfig"); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PROTOCOL_NAME_LENGTH: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PROTOCOL_TYPE_CONSOLE: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PROTOCOL_TYPE_ICA: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_PROTOCOL_TYPE_RDP: u32 = 2u32; |
| pub const WTS_QUERY_ALLOWED_INITIAL_APP: ::windows::core::GUID = ::windows::core::GUID::from_u128(0xc77d1b30_5be1_4c6b_a0e1_bd6d2e5c9fcc); |
| pub const WTS_QUERY_AUDIOENUM_DLL: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x9bf4fa97_c883_4c2a_80ab_5a39c9af00db); |
| pub const WTS_QUERY_LOGON_SCREEN_SIZE: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x8b8e0fe7_0804_4a0e_b279_8660b1df0049); |
| pub const WTS_QUERY_MF_FORMAT_SUPPORT: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x41869ad0_6332_4dc8_95d5_db749e2f1d94); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_CONNECT: u32 = 256u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_DISCONNECT: u32 = 512u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_GUEST_ACCESS: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_LOGOFF: u32 = 64u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_LOGON: u32 = 32u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_MESSAGE: u32 = 128u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_QUERY_INFORMATION: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_REMOTE_CONTROL: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_RESET: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_SET_INFORMATION: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SECURITY_VIRTUAL_CHANNELS: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SESSIONSTATE_LOCK: u32 = 0u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SESSIONSTATE_UNKNOWN: u32 = 4294967295u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SESSIONSTATE_UNLOCK: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_USERNAME_LENGTH: u32 = 255u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_VALUE_TYPE_BINARY: u32 = 3u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_VALUE_TYPE_GUID: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_VALUE_TYPE_STRING: u32 = 2u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_VALUE_TYPE_ULONG: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_WSD_FASTREBOOT: u32 = 16u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_WSD_LOGOFF: u32 = 1u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_WSD_POWEROFF: u32 = 8u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_WSD_REBOOT: u32 = 4u32; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_WSD_SHUTDOWN: u32 = 2u32; |
| pub const Workspace: ::windows::core::GUID = ::windows::core::GUID::from_u128(0x4f1dfca6_3aad_48e1_8406_4bc21a501d7c); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct AAAccountingDataType(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_MAIN_SESSION_CREATION: AAAccountingDataType = AAAccountingDataType(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_SUB_SESSION_CREATION: AAAccountingDataType = AAAccountingDataType(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_SUB_SESSION_CLOSED: AAAccountingDataType = AAAccountingDataType(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_MAIN_SESSION_CLOSED: AAAccountingDataType = AAAccountingDataType(3i32); |
| impl ::core::marker::Copy for AAAccountingDataType {} |
| impl ::core::clone::Clone for AAAccountingDataType { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for AAAccountingDataType { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for AAAccountingDataType { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for AAAccountingDataType { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("AAAccountingDataType").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct AAAuthSchemes(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_MIN: AAAuthSchemes = AAAuthSchemes(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_BASIC: AAAuthSchemes = AAAuthSchemes(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_NTLM: AAAuthSchemes = AAAuthSchemes(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_SC: AAAuthSchemes = AAAuthSchemes(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_LOGGEDONCREDENTIALS: AAAuthSchemes = AAAuthSchemes(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_NEGOTIATE: AAAuthSchemes = AAAuthSchemes(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_ANY: AAAuthSchemes = AAAuthSchemes(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_COOKIE: AAAuthSchemes = AAAuthSchemes(7i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_DIGEST: AAAuthSchemes = AAAuthSchemes(8i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_ORGID: AAAuthSchemes = AAAuthSchemes(9i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_CONID: AAAuthSchemes = AAAuthSchemes(10i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_SSPI_NTLM: AAAuthSchemes = AAAuthSchemes(11i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_AUTH_MAX: AAAuthSchemes = AAAuthSchemes(12i32); |
| impl ::core::marker::Copy for AAAuthSchemes {} |
| impl ::core::clone::Clone for AAAuthSchemes { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for AAAuthSchemes { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for AAAuthSchemes { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for AAAuthSchemes { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("AAAuthSchemes").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct AATrustClassID(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_UNTRUSTED: AATrustClassID = AATrustClassID(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_TRUSTEDUSER_UNTRUSTEDCLIENT: AATrustClassID = AATrustClassID(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AA_TRUSTEDUSER_TRUSTEDCLIENT: AATrustClassID = AATrustClassID(2i32); |
| impl ::core::marker::Copy for AATrustClassID {} |
| impl ::core::clone::Clone for AATrustClassID { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for AATrustClassID { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for AATrustClassID { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for AATrustClassID { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("AATrustClassID").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct AE_POSITION_FLAGS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const POSITION_INVALID: AE_POSITION_FLAGS = AE_POSITION_FLAGS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const POSITION_DISCONTINUOUS: AE_POSITION_FLAGS = AE_POSITION_FLAGS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const POSITION_CONTINUOUS: AE_POSITION_FLAGS = AE_POSITION_FLAGS(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const POSITION_QPC_ERROR: AE_POSITION_FLAGS = AE_POSITION_FLAGS(4i32); |
| impl ::core::marker::Copy for AE_POSITION_FLAGS {} |
| impl ::core::clone::Clone for AE_POSITION_FLAGS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for AE_POSITION_FLAGS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for AE_POSITION_FLAGS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for AE_POSITION_FLAGS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("AE_POSITION_FLAGS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct CLIENT_MESSAGE_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CLIENT_MESSAGE_CONNECTION_INVALID: CLIENT_MESSAGE_TYPE = CLIENT_MESSAGE_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CLIENT_MESSAGE_CONNECTION_STATUS: CLIENT_MESSAGE_TYPE = CLIENT_MESSAGE_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CLIENT_MESSAGE_CONNECTION_ERROR: CLIENT_MESSAGE_TYPE = CLIENT_MESSAGE_TYPE(2i32); |
| impl ::core::marker::Copy for CLIENT_MESSAGE_TYPE {} |
| impl ::core::clone::Clone for CLIENT_MESSAGE_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for CLIENT_MESSAGE_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for CLIENT_MESSAGE_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for CLIENT_MESSAGE_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("CLIENT_MESSAGE_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct CONNECTION_CHANGE_NOTIFICATION(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_INVALID: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_PENDING: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_FAILED: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_TIMEDOUT: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_SUCCEEDED: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_CANCELLED: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_LB_COMPLETED: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_QUERY_PL_COMPLETED: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(7i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const CONNECTION_REQUEST_ORCH_COMPLETED: CONNECTION_CHANGE_NOTIFICATION = CONNECTION_CHANGE_NOTIFICATION(8i32); |
| impl ::core::marker::Copy for CONNECTION_CHANGE_NOTIFICATION {} |
| impl ::core::clone::Clone for CONNECTION_CHANGE_NOTIFICATION { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for CONNECTION_CHANGE_NOTIFICATION { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for CONNECTION_CHANGE_NOTIFICATION { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for CONNECTION_CHANGE_NOTIFICATION { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("CONNECTION_CHANGE_NOTIFICATION").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct KeyCombinationType(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const KeyCombinationHome: KeyCombinationType = KeyCombinationType(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const KeyCombinationLeft: KeyCombinationType = KeyCombinationType(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const KeyCombinationUp: KeyCombinationType = KeyCombinationType(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const KeyCombinationRight: KeyCombinationType = KeyCombinationType(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const KeyCombinationDown: KeyCombinationType = KeyCombinationType(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const KeyCombinationScroll: KeyCombinationType = KeyCombinationType(5i32); |
| impl ::core::marker::Copy for KeyCombinationType {} |
| impl ::core::clone::Clone for KeyCombinationType { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for KeyCombinationType { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for KeyCombinationType { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for KeyCombinationType { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("KeyCombinationType").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct PLUGIN_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const UNKNOWN_PLUGIN: PLUGIN_TYPE = PLUGIN_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const POLICY_PLUGIN: PLUGIN_TYPE = PLUGIN_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RESOURCE_PLUGIN: PLUGIN_TYPE = PLUGIN_TYPE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const LOAD_BALANCING_PLUGIN: PLUGIN_TYPE = PLUGIN_TYPE(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PLACEMENT_PLUGIN: PLUGIN_TYPE = PLUGIN_TYPE(8i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const ORCHESTRATION_PLUGIN: PLUGIN_TYPE = PLUGIN_TYPE(16i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PROVISIONING_PLUGIN: PLUGIN_TYPE = PLUGIN_TYPE(32i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TASK_PLUGIN: PLUGIN_TYPE = PLUGIN_TYPE(64i32); |
| impl ::core::marker::Copy for PLUGIN_TYPE {} |
| impl ::core::clone::Clone for PLUGIN_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for PLUGIN_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for PLUGIN_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for PLUGIN_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("PLUGIN_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct PasswordEncodingType(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PasswordEncodingUTF8: PasswordEncodingType = PasswordEncodingType(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PasswordEncodingUTF16LE: PasswordEncodingType = PasswordEncodingType(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PasswordEncodingUTF16BE: PasswordEncodingType = PasswordEncodingType(2i32); |
| impl ::core::marker::Copy for PasswordEncodingType {} |
| impl ::core::clone::Clone for PasswordEncodingType { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for PasswordEncodingType { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for PasswordEncodingType { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for PasswordEncodingType { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("PasswordEncodingType").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct PolicyAttributeType(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const EnableAllRedirections: PolicyAttributeType = PolicyAttributeType(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DisableAllRedirections: PolicyAttributeType = PolicyAttributeType(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const DriveRedirectionDisabled: PolicyAttributeType = PolicyAttributeType(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PrinterRedirectionDisabled: PolicyAttributeType = PolicyAttributeType(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PortRedirectionDisabled: PolicyAttributeType = PolicyAttributeType(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const ClipboardRedirectionDisabled: PolicyAttributeType = PolicyAttributeType(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const PnpRedirectionDisabled: PolicyAttributeType = PolicyAttributeType(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const AllowOnlySDRServers: PolicyAttributeType = PolicyAttributeType(7i32); |
| impl ::core::marker::Copy for PolicyAttributeType {} |
| impl ::core::clone::Clone for PolicyAttributeType { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for PolicyAttributeType { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for PolicyAttributeType { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for PolicyAttributeType { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("PolicyAttributeType").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct RDV_TASK_STATUS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_UNKNOWN: RDV_TASK_STATUS = RDV_TASK_STATUS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_SEARCHING: RDV_TASK_STATUS = RDV_TASK_STATUS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_DOWNLOADING: RDV_TASK_STATUS = RDV_TASK_STATUS(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_APPLYING: RDV_TASK_STATUS = RDV_TASK_STATUS(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_REBOOTING: RDV_TASK_STATUS = RDV_TASK_STATUS(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_REBOOTED: RDV_TASK_STATUS = RDV_TASK_STATUS(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_SUCCESS: RDV_TASK_STATUS = RDV_TASK_STATUS(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_FAILED: RDV_TASK_STATUS = RDV_TASK_STATUS(7i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RDV_TASK_STATUS_TIMEOUT: RDV_TASK_STATUS = RDV_TASK_STATUS(8i32); |
| impl ::core::marker::Copy for RDV_TASK_STATUS {} |
| impl ::core::clone::Clone for RDV_TASK_STATUS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for RDV_TASK_STATUS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for RDV_TASK_STATUS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for RDV_TASK_STATUS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("RDV_TASK_STATUS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct RD_FARM_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RD_FARM_RDSH: RD_FARM_TYPE = RD_FARM_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RD_FARM_TEMP_VM: RD_FARM_TYPE = RD_FARM_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RD_FARM_MANUAL_PERSONAL_VM: RD_FARM_TYPE = RD_FARM_TYPE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RD_FARM_AUTO_PERSONAL_VM: RD_FARM_TYPE = RD_FARM_TYPE(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RD_FARM_MANUAL_PERSONAL_RDSH: RD_FARM_TYPE = RD_FARM_TYPE(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RD_FARM_AUTO_PERSONAL_RDSH: RD_FARM_TYPE = RD_FARM_TYPE(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RD_FARM_TYPE_UNKNOWN: RD_FARM_TYPE = RD_FARM_TYPE(-1i32); |
| impl ::core::marker::Copy for RD_FARM_TYPE {} |
| impl ::core::clone::Clone for RD_FARM_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for RD_FARM_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for RD_FARM_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for RD_FARM_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("RD_FARM_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct RemoteActionType(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RemoteActionCharms: RemoteActionType = RemoteActionType(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RemoteActionAppbar: RemoteActionType = RemoteActionType(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RemoteActionSnap: RemoteActionType = RemoteActionType(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RemoteActionStartScreen: RemoteActionType = RemoteActionType(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const RemoteActionAppSwitch: RemoteActionType = RemoteActionType(4i32); |
| impl ::core::marker::Copy for RemoteActionType {} |
| impl ::core::clone::Clone for RemoteActionType { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for RemoteActionType { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for RemoteActionType { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for RemoteActionType { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("RemoteActionType").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct SESSION_TIMEOUT_ACTION_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const SESSION_TIMEOUT_ACTION_DISCONNECT: SESSION_TIMEOUT_ACTION_TYPE = SESSION_TIMEOUT_ACTION_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const SESSION_TIMEOUT_ACTION_SILENT_REAUTH: SESSION_TIMEOUT_ACTION_TYPE = SESSION_TIMEOUT_ACTION_TYPE(1i32); |
| impl ::core::marker::Copy for SESSION_TIMEOUT_ACTION_TYPE {} |
| impl ::core::clone::Clone for SESSION_TIMEOUT_ACTION_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for SESSION_TIMEOUT_ACTION_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for SESSION_TIMEOUT_ACTION_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for SESSION_TIMEOUT_ACTION_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("SESSION_TIMEOUT_ACTION_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct SnapshotEncodingType(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const SnapshotEncodingDataUri: SnapshotEncodingType = SnapshotEncodingType(0i32); |
| impl ::core::marker::Copy for SnapshotEncodingType {} |
| impl ::core::clone::Clone for SnapshotEncodingType { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for SnapshotEncodingType { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for SnapshotEncodingType { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for SnapshotEncodingType { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("SnapshotEncodingType").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct SnapshotFormatType(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const SnapshotFormatPng: SnapshotFormatType = SnapshotFormatType(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const SnapshotFormatJpeg: SnapshotFormatType = SnapshotFormatType(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const SnapshotFormatBmp: SnapshotFormatType = SnapshotFormatType(2i32); |
| impl ::core::marker::Copy for SnapshotFormatType {} |
| impl ::core::clone::Clone for SnapshotFormatType { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for SnapshotFormatType { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for SnapshotFormatType { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for SnapshotFormatType { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("SnapshotFormatType").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TARGET_CHANGE_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_CHANGE_UNSPEC: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_EXTERNALIP_CHANGED: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_INTERNALIP_CHANGED: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_JOINED: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(8i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_REMOVED: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(16i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_STATE_CHANGED: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(32i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_IDLE: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(64i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_PENDING: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(128i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_INUSE: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(256i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_PATCH_STATE_CHANGED: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(512i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_FARM_MEMBERSHIP_CHANGED: TARGET_CHANGE_TYPE = TARGET_CHANGE_TYPE(1024i32); |
| impl ::core::marker::Copy for TARGET_CHANGE_TYPE {} |
| impl ::core::clone::Clone for TARGET_CHANGE_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TARGET_CHANGE_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TARGET_CHANGE_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TARGET_CHANGE_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TARGET_CHANGE_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TARGET_OWNER(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const OWNER_UNKNOWN: TARGET_OWNER = TARGET_OWNER(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const OWNER_MS_TS_PLUGIN: TARGET_OWNER = TARGET_OWNER(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const OWNER_MS_VM_PLUGIN: TARGET_OWNER = TARGET_OWNER(2i32); |
| impl ::core::marker::Copy for TARGET_OWNER {} |
| impl ::core::clone::Clone for TARGET_OWNER { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TARGET_OWNER { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TARGET_OWNER { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TARGET_OWNER { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TARGET_OWNER").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TARGET_PATCH_STATE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_PATCH_UNKNOWN: TARGET_PATCH_STATE = TARGET_PATCH_STATE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_PATCH_NOT_STARTED: TARGET_PATCH_STATE = TARGET_PATCH_STATE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_PATCH_IN_PROGRESS: TARGET_PATCH_STATE = TARGET_PATCH_STATE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_PATCH_COMPLETED: TARGET_PATCH_STATE = TARGET_PATCH_STATE(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_PATCH_FAILED: TARGET_PATCH_STATE = TARGET_PATCH_STATE(4i32); |
| impl ::core::marker::Copy for TARGET_PATCH_STATE {} |
| impl ::core::clone::Clone for TARGET_PATCH_STATE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TARGET_PATCH_STATE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TARGET_PATCH_STATE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TARGET_PATCH_STATE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TARGET_PATCH_STATE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TARGET_STATE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_UNKNOWN: TARGET_STATE = TARGET_STATE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_INITIALIZING: TARGET_STATE = TARGET_STATE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_RUNNING: TARGET_STATE = TARGET_STATE(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_DOWN: TARGET_STATE = TARGET_STATE(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_HIBERNATED: TARGET_STATE = TARGET_STATE(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_CHECKED_OUT: TARGET_STATE = TARGET_STATE(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_STOPPED: TARGET_STATE = TARGET_STATE(7i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_INVALID: TARGET_STATE = TARGET_STATE(8i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_STARTING: TARGET_STATE = TARGET_STATE(9i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_STOPPING: TARGET_STATE = TARGET_STATE(10i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TARGET_MAXSTATE: TARGET_STATE = TARGET_STATE(11i32); |
| impl ::core::marker::Copy for TARGET_STATE {} |
| impl ::core::clone::Clone for TARGET_STATE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TARGET_STATE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TARGET_STATE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TARGET_STATE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TARGET_STATE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TARGET_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const UNKNOWN: TARGET_TYPE = TARGET_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const FARM: TARGET_TYPE = TARGET_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const NONFARM: TARGET_TYPE = TARGET_TYPE(2i32); |
| impl ::core::marker::Copy for TARGET_TYPE {} |
| impl ::core::clone::Clone for TARGET_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TARGET_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TARGET_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TARGET_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TARGET_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSPUB_PLUGIN_PD_ASSIGNMENT_NEW: TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE = TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSPUB_PLUGIN_PD_ASSIGNMENT_EXISTING: TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE = TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE(1i32); |
| impl ::core::marker::Copy for TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE {} |
| impl ::core::clone::Clone for TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TSPUB_PLUGIN_PD_ASSIGNMENT_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TSPUB_PLUGIN_PD_RESOLUTION_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSPUB_PLUGIN_PD_QUERY_OR_CREATE: TSPUB_PLUGIN_PD_RESOLUTION_TYPE = TSPUB_PLUGIN_PD_RESOLUTION_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSPUB_PLUGIN_PD_QUERY_EXISTING: TSPUB_PLUGIN_PD_RESOLUTION_TYPE = TSPUB_PLUGIN_PD_RESOLUTION_TYPE(1i32); |
| impl ::core::marker::Copy for TSPUB_PLUGIN_PD_RESOLUTION_TYPE {} |
| impl ::core::clone::Clone for TSPUB_PLUGIN_PD_RESOLUTION_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TSPUB_PLUGIN_PD_RESOLUTION_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TSPUB_PLUGIN_PD_RESOLUTION_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TSPUB_PLUGIN_PD_RESOLUTION_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TSPUB_PLUGIN_PD_RESOLUTION_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TSSB_NOTIFICATION_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSSB_NOTIFY_INVALID: TSSB_NOTIFICATION_TYPE = TSSB_NOTIFICATION_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSSB_NOTIFY_TARGET_CHANGE: TSSB_NOTIFICATION_TYPE = TSSB_NOTIFICATION_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSSB_NOTIFY_SESSION_CHANGE: TSSB_NOTIFICATION_TYPE = TSSB_NOTIFICATION_TYPE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSSB_NOTIFY_CONNECTION_REQUEST_CHANGE: TSSB_NOTIFICATION_TYPE = TSSB_NOTIFICATION_TYPE(4i32); |
| impl ::core::marker::Copy for TSSB_NOTIFICATION_TYPE {} |
| impl ::core::clone::Clone for TSSB_NOTIFICATION_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TSSB_NOTIFICATION_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TSSB_NOTIFICATION_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TSSB_NOTIFICATION_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TSSB_NOTIFICATION_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TSSD_AddrV46Type(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSSD_ADDR_UNDEFINED: TSSD_AddrV46Type = TSSD_AddrV46Type(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSSD_ADDR_IPv4: TSSD_AddrV46Type = TSSD_AddrV46Type(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TSSD_ADDR_IPv6: TSSD_AddrV46Type = TSSD_AddrV46Type(6i32); |
| impl ::core::marker::Copy for TSSD_AddrV46Type {} |
| impl ::core::clone::Clone for TSSD_AddrV46Type { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TSSD_AddrV46Type { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TSSD_AddrV46Type { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TSSD_AddrV46Type { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TSSD_AddrV46Type").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TSSESSION_STATE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_INVALID: TSSESSION_STATE = TSSESSION_STATE(-1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_ACTIVE: TSSESSION_STATE = TSSESSION_STATE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_CONNECTED: TSSESSION_STATE = TSSESSION_STATE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_CONNECTQUERY: TSSESSION_STATE = TSSESSION_STATE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_SHADOW: TSSESSION_STATE = TSSESSION_STATE(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_DISCONNECTED: TSSESSION_STATE = TSSESSION_STATE(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_IDLE: TSSESSION_STATE = TSSESSION_STATE(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_LISTEN: TSSESSION_STATE = TSSESSION_STATE(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_RESET: TSSESSION_STATE = TSSESSION_STATE(7i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_DOWN: TSSESSION_STATE = TSSESSION_STATE(8i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_INIT: TSSESSION_STATE = TSSESSION_STATE(9i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const STATE_MAX: TSSESSION_STATE = TSSESSION_STATE(10i32); |
| impl ::core::marker::Copy for TSSESSION_STATE {} |
| impl ::core::clone::Clone for TSSESSION_STATE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TSSESSION_STATE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TSSESSION_STATE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TSSESSION_STATE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TSSESSION_STATE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct TS_SB_SORT_BY(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TS_SB_SORT_BY_NONE: TS_SB_SORT_BY = TS_SB_SORT_BY(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TS_SB_SORT_BY_NAME: TS_SB_SORT_BY = TS_SB_SORT_BY(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const TS_SB_SORT_BY_PROP: TS_SB_SORT_BY = TS_SB_SORT_BY(2i32); |
| impl ::core::marker::Copy for TS_SB_SORT_BY {} |
| impl ::core::clone::Clone for TS_SB_SORT_BY { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for TS_SB_SORT_BY { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for TS_SB_SORT_BY { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for TS_SB_SORT_BY { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("TS_SB_SORT_BY").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct VM_HOST_NOTIFY_STATUS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_HOST_STATUS_INIT_PENDING: VM_HOST_NOTIFY_STATUS = VM_HOST_NOTIFY_STATUS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_HOST_STATUS_INIT_IN_PROGRESS: VM_HOST_NOTIFY_STATUS = VM_HOST_NOTIFY_STATUS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_HOST_STATUS_INIT_COMPLETE: VM_HOST_NOTIFY_STATUS = VM_HOST_NOTIFY_STATUS(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_HOST_STATUS_INIT_FAILED: VM_HOST_NOTIFY_STATUS = VM_HOST_NOTIFY_STATUS(3i32); |
| impl ::core::marker::Copy for VM_HOST_NOTIFY_STATUS {} |
| impl ::core::clone::Clone for VM_HOST_NOTIFY_STATUS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for VM_HOST_NOTIFY_STATUS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for VM_HOST_NOTIFY_STATUS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for VM_HOST_NOTIFY_STATUS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("VM_HOST_NOTIFY_STATUS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct VM_NOTIFY_STATUS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_NOTIFY_STATUS_PENDING: VM_NOTIFY_STATUS = VM_NOTIFY_STATUS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_NOTIFY_STATUS_IN_PROGRESS: VM_NOTIFY_STATUS = VM_NOTIFY_STATUS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_NOTIFY_STATUS_COMPLETE: VM_NOTIFY_STATUS = VM_NOTIFY_STATUS(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_NOTIFY_STATUS_FAILED: VM_NOTIFY_STATUS = VM_NOTIFY_STATUS(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const VM_NOTIFY_STATUS_CANCELED: VM_NOTIFY_STATUS = VM_NOTIFY_STATUS(4i32); |
| impl ::core::marker::Copy for VM_NOTIFY_STATUS {} |
| impl ::core::clone::Clone for VM_NOTIFY_STATUS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for VM_NOTIFY_STATUS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for VM_NOTIFY_STATUS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for VM_NOTIFY_STATUS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("VM_NOTIFY_STATUS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WRDS_CONNECTION_SETTING_LEVEL(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_CONNECTION_SETTING_LEVEL_INVALID: WRDS_CONNECTION_SETTING_LEVEL = WRDS_CONNECTION_SETTING_LEVEL(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_CONNECTION_SETTING_LEVEL_1: WRDS_CONNECTION_SETTING_LEVEL = WRDS_CONNECTION_SETTING_LEVEL(1i32); |
| impl ::core::marker::Copy for WRDS_CONNECTION_SETTING_LEVEL {} |
| impl ::core::clone::Clone for WRDS_CONNECTION_SETTING_LEVEL { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WRDS_CONNECTION_SETTING_LEVEL { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_CONNECTION_SETTING_LEVEL { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WRDS_CONNECTION_SETTING_LEVEL { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WRDS_CONNECTION_SETTING_LEVEL").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WRDS_LISTENER_SETTING_LEVEL(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_LISTENER_SETTING_LEVEL_INVALID: WRDS_LISTENER_SETTING_LEVEL = WRDS_LISTENER_SETTING_LEVEL(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_LISTENER_SETTING_LEVEL_1: WRDS_LISTENER_SETTING_LEVEL = WRDS_LISTENER_SETTING_LEVEL(1i32); |
| impl ::core::marker::Copy for WRDS_LISTENER_SETTING_LEVEL {} |
| impl ::core::clone::Clone for WRDS_LISTENER_SETTING_LEVEL { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WRDS_LISTENER_SETTING_LEVEL { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_LISTENER_SETTING_LEVEL { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WRDS_LISTENER_SETTING_LEVEL { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WRDS_LISTENER_SETTING_LEVEL").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WRDS_SETTING_LEVEL(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_LEVEL_INVALID: WRDS_SETTING_LEVEL = WRDS_SETTING_LEVEL(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_LEVEL_1: WRDS_SETTING_LEVEL = WRDS_SETTING_LEVEL(1i32); |
| impl ::core::marker::Copy for WRDS_SETTING_LEVEL {} |
| impl ::core::clone::Clone for WRDS_SETTING_LEVEL { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WRDS_SETTING_LEVEL { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_SETTING_LEVEL { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WRDS_SETTING_LEVEL { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WRDS_SETTING_LEVEL").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WRDS_SETTING_STATUS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_STATUS_NOTAPPLICABLE: WRDS_SETTING_STATUS = WRDS_SETTING_STATUS(-1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_STATUS_DISABLED: WRDS_SETTING_STATUS = WRDS_SETTING_STATUS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_STATUS_ENABLED: WRDS_SETTING_STATUS = WRDS_SETTING_STATUS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_STATUS_NOTCONFIGURED: WRDS_SETTING_STATUS = WRDS_SETTING_STATUS(2i32); |
| impl ::core::marker::Copy for WRDS_SETTING_STATUS {} |
| impl ::core::clone::Clone for WRDS_SETTING_STATUS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WRDS_SETTING_STATUS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_SETTING_STATUS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WRDS_SETTING_STATUS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WRDS_SETTING_STATUS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WRDS_SETTING_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_TYPE_INVALID: WRDS_SETTING_TYPE = WRDS_SETTING_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_TYPE_MACHINE: WRDS_SETTING_TYPE = WRDS_SETTING_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_TYPE_USER: WRDS_SETTING_TYPE = WRDS_SETTING_TYPE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRDS_SETTING_TYPE_SAM: WRDS_SETTING_TYPE = WRDS_SETTING_TYPE(3i32); |
| impl ::core::marker::Copy for WRDS_SETTING_TYPE {} |
| impl ::core::clone::Clone for WRDS_SETTING_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WRDS_SETTING_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_SETTING_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WRDS_SETTING_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WRDS_SETTING_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WRdsGraphicsChannelType(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRdsGraphicsChannelType_GuaranteedDelivery: WRdsGraphicsChannelType = WRdsGraphicsChannelType(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WRdsGraphicsChannelType_BestEffortDelivery: WRdsGraphicsChannelType = WRdsGraphicsChannelType(1i32); |
| impl ::core::marker::Copy for WRdsGraphicsChannelType {} |
| impl ::core::clone::Clone for WRdsGraphicsChannelType { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WRdsGraphicsChannelType { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRdsGraphicsChannelType { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WRdsGraphicsChannelType { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WRdsGraphicsChannelType").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTSSBX_ADDRESS_FAMILY(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_ADDRESS_FAMILY_AF_UNSPEC: WTSSBX_ADDRESS_FAMILY = WTSSBX_ADDRESS_FAMILY(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_ADDRESS_FAMILY_AF_INET: WTSSBX_ADDRESS_FAMILY = WTSSBX_ADDRESS_FAMILY(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_ADDRESS_FAMILY_AF_INET6: WTSSBX_ADDRESS_FAMILY = WTSSBX_ADDRESS_FAMILY(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_ADDRESS_FAMILY_AF_IPX: WTSSBX_ADDRESS_FAMILY = WTSSBX_ADDRESS_FAMILY(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_ADDRESS_FAMILY_AF_NETBIOS: WTSSBX_ADDRESS_FAMILY = WTSSBX_ADDRESS_FAMILY(4i32); |
| impl ::core::marker::Copy for WTSSBX_ADDRESS_FAMILY {} |
| impl ::core::clone::Clone for WTSSBX_ADDRESS_FAMILY { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTSSBX_ADDRESS_FAMILY { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_ADDRESS_FAMILY { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTSSBX_ADDRESS_FAMILY { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTSSBX_ADDRESS_FAMILY").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTSSBX_MACHINE_DRAIN(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_DRAIN_UNSPEC: WTSSBX_MACHINE_DRAIN = WTSSBX_MACHINE_DRAIN(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_DRAIN_OFF: WTSSBX_MACHINE_DRAIN = WTSSBX_MACHINE_DRAIN(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_DRAIN_ON: WTSSBX_MACHINE_DRAIN = WTSSBX_MACHINE_DRAIN(2i32); |
| impl ::core::marker::Copy for WTSSBX_MACHINE_DRAIN {} |
| impl ::core::clone::Clone for WTSSBX_MACHINE_DRAIN { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTSSBX_MACHINE_DRAIN { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_MACHINE_DRAIN { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTSSBX_MACHINE_DRAIN { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTSSBX_MACHINE_DRAIN").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTSSBX_MACHINE_SESSION_MODE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_SESSION_MODE_UNSPEC: WTSSBX_MACHINE_SESSION_MODE = WTSSBX_MACHINE_SESSION_MODE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_SESSION_MODE_SINGLE: WTSSBX_MACHINE_SESSION_MODE = WTSSBX_MACHINE_SESSION_MODE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_SESSION_MODE_MULTIPLE: WTSSBX_MACHINE_SESSION_MODE = WTSSBX_MACHINE_SESSION_MODE(2i32); |
| impl ::core::marker::Copy for WTSSBX_MACHINE_SESSION_MODE {} |
| impl ::core::clone::Clone for WTSSBX_MACHINE_SESSION_MODE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTSSBX_MACHINE_SESSION_MODE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_MACHINE_SESSION_MODE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTSSBX_MACHINE_SESSION_MODE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTSSBX_MACHINE_SESSION_MODE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTSSBX_MACHINE_STATE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_STATE_UNSPEC: WTSSBX_MACHINE_STATE = WTSSBX_MACHINE_STATE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_STATE_READY: WTSSBX_MACHINE_STATE = WTSSBX_MACHINE_STATE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_MACHINE_STATE_SYNCHRONIZING: WTSSBX_MACHINE_STATE = WTSSBX_MACHINE_STATE(2i32); |
| impl ::core::marker::Copy for WTSSBX_MACHINE_STATE {} |
| impl ::core::clone::Clone for WTSSBX_MACHINE_STATE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTSSBX_MACHINE_STATE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_MACHINE_STATE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTSSBX_MACHINE_STATE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTSSBX_MACHINE_STATE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTSSBX_NOTIFICATION_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_NOTIFICATION_REMOVED: WTSSBX_NOTIFICATION_TYPE = WTSSBX_NOTIFICATION_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_NOTIFICATION_CHANGED: WTSSBX_NOTIFICATION_TYPE = WTSSBX_NOTIFICATION_TYPE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_NOTIFICATION_ADDED: WTSSBX_NOTIFICATION_TYPE = WTSSBX_NOTIFICATION_TYPE(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_NOTIFICATION_RESYNC: WTSSBX_NOTIFICATION_TYPE = WTSSBX_NOTIFICATION_TYPE(8i32); |
| impl ::core::marker::Copy for WTSSBX_NOTIFICATION_TYPE {} |
| impl ::core::clone::Clone for WTSSBX_NOTIFICATION_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTSSBX_NOTIFICATION_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_NOTIFICATION_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTSSBX_NOTIFICATION_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTSSBX_NOTIFICATION_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTSSBX_SESSION_STATE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_SESSION_STATE_UNSPEC: WTSSBX_SESSION_STATE = WTSSBX_SESSION_STATE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_SESSION_STATE_ACTIVE: WTSSBX_SESSION_STATE = WTSSBX_SESSION_STATE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSBX_SESSION_STATE_DISCONNECTED: WTSSBX_SESSION_STATE = WTSSBX_SESSION_STATE(2i32); |
| impl ::core::marker::Copy for WTSSBX_SESSION_STATE {} |
| impl ::core::clone::Clone for WTSSBX_SESSION_STATE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTSSBX_SESSION_STATE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_SESSION_STATE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTSSBX_SESSION_STATE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTSSBX_SESSION_STATE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_CERT_TYPE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CERT_TYPE_INVALID: WTS_CERT_TYPE = WTS_CERT_TYPE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CERT_TYPE_PROPRIETORY: WTS_CERT_TYPE = WTS_CERT_TYPE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_CERT_TYPE_X509: WTS_CERT_TYPE = WTS_CERT_TYPE(2i32); |
| impl ::core::marker::Copy for WTS_CERT_TYPE {} |
| impl ::core::clone::Clone for WTS_CERT_TYPE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_CERT_TYPE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_CERT_TYPE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_CERT_TYPE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_CERT_TYPE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_CONFIG_CLASS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigInitialProgram: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigWorkingDirectory: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigfInheritInitialProgram: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigfAllowLogonTerminalServer: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigTimeoutSettingsConnections: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigTimeoutSettingsDisconnections: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigTimeoutSettingsIdle: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigfDeviceClientDrives: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(7i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigfDeviceClientPrinters: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(8i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigfDeviceClientDefaultPrinter: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(9i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigBrokenTimeoutSettings: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(10i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigReconnectSettings: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(11i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigModemCallbackSettings: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(12i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigModemCallbackPhoneNumber: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(13i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigShadowingSettings: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(14i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigTerminalServerProfilePath: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(15i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigTerminalServerHomeDir: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(16i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigTerminalServerHomeDirDrive: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(17i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigfTerminalServerRemoteHomeDir: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(18i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigUser: WTS_CONFIG_CLASS = WTS_CONFIG_CLASS(19i32); |
| impl ::core::marker::Copy for WTS_CONFIG_CLASS {} |
| impl ::core::clone::Clone for WTS_CONFIG_CLASS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_CONFIG_CLASS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_CONFIG_CLASS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_CONFIG_CLASS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_CONFIG_CLASS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_CONFIG_SOURCE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserConfigSourceSAM: WTS_CONFIG_SOURCE = WTS_CONFIG_SOURCE(0i32); |
| impl ::core::marker::Copy for WTS_CONFIG_SOURCE {} |
| impl ::core::clone::Clone for WTS_CONFIG_SOURCE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_CONFIG_SOURCE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_CONFIG_SOURCE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_CONFIG_SOURCE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_CONFIG_SOURCE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_CONNECTSTATE_CLASS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSActive: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSConnected: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSConnectQuery: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSShadow: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSDisconnected: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSIdle: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSListen: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSReset: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(7i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSDown: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(8i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSInit: WTS_CONNECTSTATE_CLASS = WTS_CONNECTSTATE_CLASS(9i32); |
| impl ::core::marker::Copy for WTS_CONNECTSTATE_CLASS {} |
| impl ::core::clone::Clone for WTS_CONNECTSTATE_CLASS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_CONNECTSTATE_CLASS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_CONNECTSTATE_CLASS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_CONNECTSTATE_CLASS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_CONNECTSTATE_CLASS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_INFO_CLASS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSInitialProgram: WTS_INFO_CLASS = WTS_INFO_CLASS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSApplicationName: WTS_INFO_CLASS = WTS_INFO_CLASS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSWorkingDirectory: WTS_INFO_CLASS = WTS_INFO_CLASS(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSOEMId: WTS_INFO_CLASS = WTS_INFO_CLASS(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSessionId: WTS_INFO_CLASS = WTS_INFO_CLASS(4i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSUserName: WTS_INFO_CLASS = WTS_INFO_CLASS(5i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSWinStationName: WTS_INFO_CLASS = WTS_INFO_CLASS(6i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSDomainName: WTS_INFO_CLASS = WTS_INFO_CLASS(7i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSConnectState: WTS_INFO_CLASS = WTS_INFO_CLASS(8i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientBuildNumber: WTS_INFO_CLASS = WTS_INFO_CLASS(9i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientName: WTS_INFO_CLASS = WTS_INFO_CLASS(10i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientDirectory: WTS_INFO_CLASS = WTS_INFO_CLASS(11i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientProductId: WTS_INFO_CLASS = WTS_INFO_CLASS(12i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientHardwareId: WTS_INFO_CLASS = WTS_INFO_CLASS(13i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientAddress: WTS_INFO_CLASS = WTS_INFO_CLASS(14i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientDisplay: WTS_INFO_CLASS = WTS_INFO_CLASS(15i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientProtocolType: WTS_INFO_CLASS = WTS_INFO_CLASS(16i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSIdleTime: WTS_INFO_CLASS = WTS_INFO_CLASS(17i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSLogonTime: WTS_INFO_CLASS = WTS_INFO_CLASS(18i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSIncomingBytes: WTS_INFO_CLASS = WTS_INFO_CLASS(19i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSOutgoingBytes: WTS_INFO_CLASS = WTS_INFO_CLASS(20i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSIncomingFrames: WTS_INFO_CLASS = WTS_INFO_CLASS(21i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSOutgoingFrames: WTS_INFO_CLASS = WTS_INFO_CLASS(22i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSClientInfo: WTS_INFO_CLASS = WTS_INFO_CLASS(23i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSessionInfo: WTS_INFO_CLASS = WTS_INFO_CLASS(24i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSessionInfoEx: WTS_INFO_CLASS = WTS_INFO_CLASS(25i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSConfigInfo: WTS_INFO_CLASS = WTS_INFO_CLASS(26i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSValidationInfo: WTS_INFO_CLASS = WTS_INFO_CLASS(27i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSSessionAddressV4: WTS_INFO_CLASS = WTS_INFO_CLASS(28i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSIsRemoteSession: WTS_INFO_CLASS = WTS_INFO_CLASS(29i32); |
| impl ::core::marker::Copy for WTS_INFO_CLASS {} |
| impl ::core::clone::Clone for WTS_INFO_CLASS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_INFO_CLASS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_INFO_CLASS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_INFO_CLASS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_INFO_CLASS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_LOGON_ERROR_REDIRECTOR_RESPONSE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LOGON_ERR_INVALID: WTS_LOGON_ERROR_REDIRECTOR_RESPONSE = WTS_LOGON_ERROR_REDIRECTOR_RESPONSE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LOGON_ERR_NOT_HANDLED: WTS_LOGON_ERROR_REDIRECTOR_RESPONSE = WTS_LOGON_ERROR_REDIRECTOR_RESPONSE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LOGON_ERR_HANDLED_SHOW: WTS_LOGON_ERROR_REDIRECTOR_RESPONSE = WTS_LOGON_ERROR_REDIRECTOR_RESPONSE(2i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LOGON_ERR_HANDLED_DONT_SHOW: WTS_LOGON_ERROR_REDIRECTOR_RESPONSE = WTS_LOGON_ERROR_REDIRECTOR_RESPONSE(3i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_LOGON_ERR_HANDLED_DONT_SHOW_START_OVER: WTS_LOGON_ERROR_REDIRECTOR_RESPONSE = WTS_LOGON_ERROR_REDIRECTOR_RESPONSE(4i32); |
| impl ::core::marker::Copy for WTS_LOGON_ERROR_REDIRECTOR_RESPONSE {} |
| impl ::core::clone::Clone for WTS_LOGON_ERROR_REDIRECTOR_RESPONSE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_LOGON_ERROR_REDIRECTOR_RESPONSE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_LOGON_ERROR_REDIRECTOR_RESPONSE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_LOGON_ERROR_REDIRECTOR_RESPONSE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_LOGON_ERROR_REDIRECTOR_RESPONSE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_RCM_DRAIN_STATE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_DRAIN_STATE_NONE: WTS_RCM_DRAIN_STATE = WTS_RCM_DRAIN_STATE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_DRAIN_IN_DRAIN: WTS_RCM_DRAIN_STATE = WTS_RCM_DRAIN_STATE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_DRAIN_NOT_IN_DRAIN: WTS_RCM_DRAIN_STATE = WTS_RCM_DRAIN_STATE(2i32); |
| impl ::core::marker::Copy for WTS_RCM_DRAIN_STATE {} |
| impl ::core::clone::Clone for WTS_RCM_DRAIN_STATE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_RCM_DRAIN_STATE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_RCM_DRAIN_STATE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_RCM_DRAIN_STATE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_RCM_DRAIN_STATE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_RCM_SERVICE_STATE(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SERVICE_NONE: WTS_RCM_SERVICE_STATE = WTS_RCM_SERVICE_STATE(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SERVICE_START: WTS_RCM_SERVICE_STATE = WTS_RCM_SERVICE_STATE(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTS_SERVICE_STOP: WTS_RCM_SERVICE_STATE = WTS_RCM_SERVICE_STATE(2i32); |
| impl ::core::marker::Copy for WTS_RCM_SERVICE_STATE {} |
| impl ::core::clone::Clone for WTS_RCM_SERVICE_STATE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_RCM_SERVICE_STATE { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_RCM_SERVICE_STATE { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_RCM_SERVICE_STATE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_RCM_SERVICE_STATE").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_TYPE_CLASS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSTypeProcessInfoLevel0: WTS_TYPE_CLASS = WTS_TYPE_CLASS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSTypeProcessInfoLevel1: WTS_TYPE_CLASS = WTS_TYPE_CLASS(1i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSTypeSessionInfoLevel1: WTS_TYPE_CLASS = WTS_TYPE_CLASS(2i32); |
| impl ::core::marker::Copy for WTS_TYPE_CLASS {} |
| impl ::core::clone::Clone for WTS_TYPE_CLASS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_TYPE_CLASS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_TYPE_CLASS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_TYPE_CLASS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_TYPE_CLASS").field(&self.0).finish() |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct WTS_VIRTUAL_CLASS(pub i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSVirtualClientData: WTS_VIRTUAL_CLASS = WTS_VIRTUAL_CLASS(0i32); |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub const WTSVirtualFileHandle: WTS_VIRTUAL_CLASS = WTS_VIRTUAL_CLASS(1i32); |
| impl ::core::marker::Copy for WTS_VIRTUAL_CLASS {} |
| impl ::core::clone::Clone for WTS_VIRTUAL_CLASS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::default::Default for WTS_VIRTUAL_CLASS { |
| fn default() -> Self { |
| Self(0) |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_VIRTUAL_CLASS { |
| type Abi = Self; |
| } |
| impl ::core::fmt::Debug for WTS_VIRTUAL_CLASS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("WTS_VIRTUAL_CLASS").field(&self.0).finish() |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct AAAccountingData { |
| pub userName: ::windows::core::BSTR, |
| pub clientName: ::windows::core::BSTR, |
| pub authType: AAAuthSchemes, |
| pub resourceName: ::windows::core::BSTR, |
| pub portNumber: i32, |
| pub protocolName: ::windows::core::BSTR, |
| pub numberOfBytesReceived: i32, |
| pub numberOfBytesTransfered: i32, |
| pub reasonForDisconnect: ::windows::core::BSTR, |
| pub mainSessionId: ::windows::core::GUID, |
| pub subSessionId: i32, |
| } |
| impl ::core::clone::Clone for AAAccountingData { |
| fn clone(&self) -> Self { |
| Self { |
| userName: self.userName.clone(), |
| clientName: self.clientName.clone(), |
| authType: self.authType, |
| resourceName: self.resourceName.clone(), |
| portNumber: self.portNumber, |
| protocolName: self.protocolName.clone(), |
| numberOfBytesReceived: self.numberOfBytesReceived, |
| numberOfBytesTransfered: self.numberOfBytesTransfered, |
| reasonForDisconnect: self.reasonForDisconnect.clone(), |
| mainSessionId: self.mainSessionId, |
| subSessionId: self.subSessionId, |
| } |
| } |
| } |
| impl ::core::fmt::Debug for AAAccountingData { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("AAAccountingData") |
| .field("userName", &self.userName) |
| .field("clientName", &self.clientName) |
| .field("authType", &self.authType) |
| .field("resourceName", &self.resourceName) |
| .field("portNumber", &self.portNumber) |
| .field("protocolName", &self.protocolName) |
| .field("numberOfBytesReceived", &self.numberOfBytesReceived) |
| .field("numberOfBytesTransfered", &self.numberOfBytesTransfered) |
| .field("reasonForDisconnect", &self.reasonForDisconnect) |
| .field("mainSessionId", &self.mainSessionId) |
| .field("subSessionId", &self.subSessionId) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for AAAccountingData { |
| type Abi = ::core::mem::ManuallyDrop<Self>; |
| } |
| impl ::core::cmp::PartialEq for AAAccountingData { |
| fn eq(&self, other: &Self) -> bool { |
| self.userName == other.userName && self.clientName == other.clientName && self.authType == other.authType && self.resourceName == other.resourceName && self.portNumber == other.portNumber && self.protocolName == other.protocolName && self.numberOfBytesReceived == other.numberOfBytesReceived && self.numberOfBytesTransfered == other.numberOfBytesTransfered && self.reasonForDisconnect == other.reasonForDisconnect && self.mainSessionId == other.mainSessionId && self.subSessionId == other.subSessionId |
| } |
| } |
| impl ::core::cmp::Eq for AAAccountingData {} |
| impl ::core::default::Default for AAAccountingData { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct AE_CURRENT_POSITION { |
| pub u64DevicePosition: u64, |
| pub u64StreamPosition: u64, |
| pub u64PaddingFrames: u64, |
| pub hnsQPCPosition: i64, |
| pub f32FramesPerSecond: f32, |
| pub Flag: AE_POSITION_FLAGS, |
| } |
| impl ::core::marker::Copy for AE_CURRENT_POSITION {} |
| impl ::core::clone::Clone for AE_CURRENT_POSITION { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for AE_CURRENT_POSITION { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("AE_CURRENT_POSITION").field("u64DevicePosition", &self.u64DevicePosition).field("u64StreamPosition", &self.u64StreamPosition).field("u64PaddingFrames", &self.u64PaddingFrames).field("hnsQPCPosition", &self.hnsQPCPosition).field("f32FramesPerSecond", &self.f32FramesPerSecond).field("Flag", &self.Flag).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for AE_CURRENT_POSITION { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for AE_CURRENT_POSITION { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<AE_CURRENT_POSITION>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for AE_CURRENT_POSITION {} |
| impl ::core::default::Default for AE_CURRENT_POSITION { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct BITMAP_RENDERER_STATISTICS { |
| pub dwFramesDelivered: u32, |
| pub dwFramesDropped: u32, |
| } |
| impl ::core::marker::Copy for BITMAP_RENDERER_STATISTICS {} |
| impl ::core::clone::Clone for BITMAP_RENDERER_STATISTICS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for BITMAP_RENDERER_STATISTICS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("BITMAP_RENDERER_STATISTICS").field("dwFramesDelivered", &self.dwFramesDelivered).field("dwFramesDropped", &self.dwFramesDropped).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for BITMAP_RENDERER_STATISTICS { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for BITMAP_RENDERER_STATISTICS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<BITMAP_RENDERER_STATISTICS>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for BITMAP_RENDERER_STATISTICS {} |
| impl ::core::default::Default for BITMAP_RENDERER_STATISTICS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C, packed(1))] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct CHANNEL_DEF { |
| pub name: [super::super::Foundation::CHAR; 8], |
| pub options: u32, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for CHANNEL_DEF {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for CHANNEL_DEF { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for CHANNEL_DEF { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for CHANNEL_DEF { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<CHANNEL_DEF>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for CHANNEL_DEF {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for CHANNEL_DEF { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct CHANNEL_ENTRY_POINTS { |
| pub cbSize: u32, |
| pub protocolVersion: u32, |
| pub pVirtualChannelInit: PVIRTUALCHANNELINIT, |
| pub pVirtualChannelOpen: PVIRTUALCHANNELOPEN, |
| pub pVirtualChannelClose: PVIRTUALCHANNELCLOSE, |
| pub pVirtualChannelWrite: PVIRTUALCHANNELWRITE, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for CHANNEL_ENTRY_POINTS {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for CHANNEL_ENTRY_POINTS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for CHANNEL_ENTRY_POINTS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("CHANNEL_ENTRY_POINTS").field("cbSize", &self.cbSize).field("protocolVersion", &self.protocolVersion).field("pVirtualChannelInit", &self.pVirtualChannelInit.map(|f| f as usize)).field("pVirtualChannelOpen", &self.pVirtualChannelOpen.map(|f| f as usize)).field("pVirtualChannelClose", &self.pVirtualChannelClose.map(|f| f as usize)).field("pVirtualChannelWrite", &self.pVirtualChannelWrite.map(|f| f as usize)).finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for CHANNEL_ENTRY_POINTS { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for CHANNEL_ENTRY_POINTS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<CHANNEL_ENTRY_POINTS>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for CHANNEL_ENTRY_POINTS {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for CHANNEL_ENTRY_POINTS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct CHANNEL_PDU_HEADER { |
| pub length: u32, |
| pub flags: u32, |
| } |
| impl ::core::marker::Copy for CHANNEL_PDU_HEADER {} |
| impl ::core::clone::Clone for CHANNEL_PDU_HEADER { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for CHANNEL_PDU_HEADER { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("CHANNEL_PDU_HEADER").field("length", &self.length).field("flags", &self.flags).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for CHANNEL_PDU_HEADER { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for CHANNEL_PDU_HEADER { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<CHANNEL_PDU_HEADER>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for CHANNEL_PDU_HEADER {} |
| impl ::core::default::Default for CHANNEL_PDU_HEADER { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct CLIENT_DISPLAY { |
| pub HorizontalResolution: u32, |
| pub VerticalResolution: u32, |
| pub ColorDepth: u32, |
| } |
| impl ::core::marker::Copy for CLIENT_DISPLAY {} |
| impl ::core::clone::Clone for CLIENT_DISPLAY { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for CLIENT_DISPLAY { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("CLIENT_DISPLAY").field("HorizontalResolution", &self.HorizontalResolution).field("VerticalResolution", &self.VerticalResolution).field("ColorDepth", &self.ColorDepth).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for CLIENT_DISPLAY { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for CLIENT_DISPLAY { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<CLIENT_DISPLAY>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for CLIENT_DISPLAY {} |
| impl ::core::default::Default for CLIENT_DISPLAY { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(transparent)] |
| #[derive(::core::cmp::PartialEq, ::core::cmp::Eq)] |
| pub struct HwtsVirtualChannelHandle(pub isize); |
| impl HwtsVirtualChannelHandle { |
| pub fn is_invalid(&self) -> bool { |
| self.0 == -1 || self.0 == 0 |
| } |
| } |
| impl ::core::default::Default for HwtsVirtualChannelHandle { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| impl ::core::clone::Clone for HwtsVirtualChannelHandle { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::marker::Copy for HwtsVirtualChannelHandle {} |
| impl ::core::fmt::Debug for HwtsVirtualChannelHandle { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_tuple("HwtsVirtualChannelHandle").field(&self.0).finish() |
| } |
| } |
| impl ::core::convert::From<::core::option::Option<HwtsVirtualChannelHandle>> for HwtsVirtualChannelHandle { |
| fn from(optional: ::core::option::Option<HwtsVirtualChannelHandle>) -> HwtsVirtualChannelHandle { |
| optional.unwrap_or_default() |
| } |
| } |
| unsafe impl ::windows::core::Abi for HwtsVirtualChannelHandle { |
| type Abi = Self; |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct PRODUCT_INFOA { |
| pub CompanyName: [super::super::Foundation::CHAR; 256], |
| pub ProductID: [super::super::Foundation::CHAR; 4], |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for PRODUCT_INFOA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for PRODUCT_INFOA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for PRODUCT_INFOA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("PRODUCT_INFOA").field("CompanyName", &self.CompanyName).field("ProductID", &self.ProductID).finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for PRODUCT_INFOA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for PRODUCT_INFOA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<PRODUCT_INFOA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for PRODUCT_INFOA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for PRODUCT_INFOA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct PRODUCT_INFOW { |
| pub CompanyName: [u16; 256], |
| pub ProductID: [u16; 4], |
| } |
| impl ::core::marker::Copy for PRODUCT_INFOW {} |
| impl ::core::clone::Clone for PRODUCT_INFOW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for PRODUCT_INFOW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("PRODUCT_INFOW").field("CompanyName", &self.CompanyName).field("ProductID", &self.ProductID).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for PRODUCT_INFOW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for PRODUCT_INFOW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<PRODUCT_INFOW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for PRODUCT_INFOW {} |
| impl ::core::default::Default for PRODUCT_INFOW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C, packed(1))] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct RFX_GFX_MONITOR_INFO { |
| pub left: i32, |
| pub top: i32, |
| pub right: i32, |
| pub bottom: i32, |
| pub physicalWidth: u32, |
| pub physicalHeight: u32, |
| pub orientation: u32, |
| pub primary: super::super::Foundation::BOOL, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for RFX_GFX_MONITOR_INFO {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for RFX_GFX_MONITOR_INFO { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for RFX_GFX_MONITOR_INFO { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for RFX_GFX_MONITOR_INFO { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MONITOR_INFO>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for RFX_GFX_MONITOR_INFO {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for RFX_GFX_MONITOR_INFO { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST { |
| pub channelHdr: RFX_GFX_MSG_HEADER, |
| } |
| impl ::core::marker::Copy for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST {} |
| impl ::core::clone::Clone for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST {} |
| impl ::core::default::Default for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_REQUEST { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C, packed(1))] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE { |
| pub channelHdr: RFX_GFX_MSG_HEADER, |
| pub reserved: u32, |
| pub monitorCount: u32, |
| pub MonitorData: [RFX_GFX_MONITOR_INFO; 16], |
| pub clientUniqueId: [u16; 32], |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for RFX_GFX_MSG_CLIENT_DESKTOP_INFO_RESPONSE { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM { |
| pub channelHdr: RFX_GFX_MSG_HEADER, |
| } |
| impl ::core::marker::Copy for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM {} |
| impl ::core::clone::Clone for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM {} |
| impl ::core::default::Default for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_CONFIRM { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C, packed(1))] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY { |
| pub channelHdr: RFX_GFX_MSG_HEADER, |
| pub ulWidth: u32, |
| pub ulHeight: u32, |
| pub ulBpp: u32, |
| pub Reserved: u32, |
| } |
| impl ::core::marker::Copy for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY {} |
| impl ::core::clone::Clone for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY {} |
| impl ::core::default::Default for RFX_GFX_MSG_DESKTOP_CONFIG_CHANGE_NOTIFY { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C, packed(1))] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_MSG_DESKTOP_INPUT_RESET { |
| pub channelHdr: RFX_GFX_MSG_HEADER, |
| pub ulWidth: u32, |
| pub ulHeight: u32, |
| } |
| impl ::core::marker::Copy for RFX_GFX_MSG_DESKTOP_INPUT_RESET {} |
| impl ::core::clone::Clone for RFX_GFX_MSG_DESKTOP_INPUT_RESET { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_DESKTOP_INPUT_RESET { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_DESKTOP_INPUT_RESET { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_DESKTOP_INPUT_RESET>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_MSG_DESKTOP_INPUT_RESET {} |
| impl ::core::default::Default for RFX_GFX_MSG_DESKTOP_INPUT_RESET { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_MSG_DESKTOP_RESEND_REQUEST { |
| pub channelHdr: RFX_GFX_MSG_HEADER, |
| pub RedrawRect: RFX_GFX_RECT, |
| } |
| impl ::core::marker::Copy for RFX_GFX_MSG_DESKTOP_RESEND_REQUEST {} |
| impl ::core::clone::Clone for RFX_GFX_MSG_DESKTOP_RESEND_REQUEST { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_DESKTOP_RESEND_REQUEST { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_DESKTOP_RESEND_REQUEST { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_DESKTOP_RESEND_REQUEST>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_MSG_DESKTOP_RESEND_REQUEST {} |
| impl ::core::default::Default for RFX_GFX_MSG_DESKTOP_RESEND_REQUEST { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C, packed(1))] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_MSG_DISCONNECT_NOTIFY { |
| pub channelHdr: RFX_GFX_MSG_HEADER, |
| pub DisconnectReason: u32, |
| } |
| impl ::core::marker::Copy for RFX_GFX_MSG_DISCONNECT_NOTIFY {} |
| impl ::core::clone::Clone for RFX_GFX_MSG_DISCONNECT_NOTIFY { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_DISCONNECT_NOTIFY { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_DISCONNECT_NOTIFY { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_DISCONNECT_NOTIFY>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_MSG_DISCONNECT_NOTIFY {} |
| impl ::core::default::Default for RFX_GFX_MSG_DISCONNECT_NOTIFY { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C, packed(1))] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_MSG_HEADER { |
| pub uMSGType: u16, |
| pub cbSize: u16, |
| } |
| impl ::core::marker::Copy for RFX_GFX_MSG_HEADER {} |
| impl ::core::clone::Clone for RFX_GFX_MSG_HEADER { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_HEADER { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_HEADER { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_HEADER>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_MSG_HEADER {} |
| impl ::core::default::Default for RFX_GFX_MSG_HEADER { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_MSG_RDP_DATA { |
| pub channelHdr: RFX_GFX_MSG_HEADER, |
| pub rdpData: [u8; 1], |
| } |
| impl ::core::marker::Copy for RFX_GFX_MSG_RDP_DATA {} |
| impl ::core::clone::Clone for RFX_GFX_MSG_RDP_DATA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_MSG_RDP_DATA { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_MSG_RDP_DATA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_MSG_RDP_DATA>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_MSG_RDP_DATA {} |
| impl ::core::default::Default for RFX_GFX_MSG_RDP_DATA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C, packed(1))] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct RFX_GFX_RECT { |
| pub left: i32, |
| pub top: i32, |
| pub right: i32, |
| pub bottom: i32, |
| } |
| impl ::core::marker::Copy for RFX_GFX_RECT {} |
| impl ::core::clone::Clone for RFX_GFX_RECT { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for RFX_GFX_RECT { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for RFX_GFX_RECT { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<RFX_GFX_RECT>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for RFX_GFX_RECT {} |
| impl ::core::default::Default for RFX_GFX_RECT { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct TSSD_ConnectionPoint { |
| pub ServerAddressB: [u8; 16], |
| pub AddressType: TSSD_AddrV46Type, |
| pub PortNumber: u16, |
| pub AddressScope: u32, |
| } |
| impl ::core::marker::Copy for TSSD_ConnectionPoint {} |
| impl ::core::clone::Clone for TSSD_ConnectionPoint { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for TSSD_ConnectionPoint { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("TSSD_ConnectionPoint").field("ServerAddressB", &self.ServerAddressB).field("AddressType", &self.AddressType).field("PortNumber", &self.PortNumber).field("AddressScope", &self.AddressScope).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for TSSD_ConnectionPoint { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for TSSD_ConnectionPoint { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<TSSD_ConnectionPoint>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for TSSD_ConnectionPoint {} |
| impl ::core::default::Default for TSSD_ConnectionPoint { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct VM_NOTIFY_ENTRY { |
| pub VmName: [u16; 128], |
| pub VmHost: [u16; 128], |
| } |
| impl ::core::marker::Copy for VM_NOTIFY_ENTRY {} |
| impl ::core::clone::Clone for VM_NOTIFY_ENTRY { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for VM_NOTIFY_ENTRY { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("VM_NOTIFY_ENTRY").field("VmName", &self.VmName).field("VmHost", &self.VmHost).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for VM_NOTIFY_ENTRY { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for VM_NOTIFY_ENTRY { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<VM_NOTIFY_ENTRY>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for VM_NOTIFY_ENTRY {} |
| impl ::core::default::Default for VM_NOTIFY_ENTRY { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct VM_NOTIFY_INFO { |
| pub dwNumEntries: u32, |
| pub ppVmEntries: *mut *mut VM_NOTIFY_ENTRY, |
| } |
| impl ::core::marker::Copy for VM_NOTIFY_INFO {} |
| impl ::core::clone::Clone for VM_NOTIFY_INFO { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for VM_NOTIFY_INFO { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("VM_NOTIFY_INFO").field("dwNumEntries", &self.dwNumEntries).field("ppVmEntries", &self.ppVmEntries).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for VM_NOTIFY_INFO { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for VM_NOTIFY_INFO { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<VM_NOTIFY_INFO>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for VM_NOTIFY_INFO {} |
| impl ::core::default::Default for VM_NOTIFY_INFO { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct VM_PATCH_INFO { |
| pub dwNumEntries: u32, |
| pub pVmNames: *mut ::windows::core::PWSTR, |
| } |
| impl ::core::marker::Copy for VM_PATCH_INFO {} |
| impl ::core::clone::Clone for VM_PATCH_INFO { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for VM_PATCH_INFO { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("VM_PATCH_INFO").field("dwNumEntries", &self.dwNumEntries).field("pVmNames", &self.pVmNames).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for VM_PATCH_INFO { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for VM_PATCH_INFO { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<VM_PATCH_INFO>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for VM_PATCH_INFO {} |
| impl ::core::default::Default for VM_PATCH_INFO { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub union WRDS_CONNECTION_SETTING { |
| pub WRdsConnectionSettings1: WRDS_CONNECTION_SETTINGS_1, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WRDS_CONNECTION_SETTING {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WRDS_CONNECTION_SETTING { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WRDS_CONNECTION_SETTING { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WRDS_CONNECTION_SETTING { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_CONNECTION_SETTING>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WRDS_CONNECTION_SETTING {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WRDS_CONNECTION_SETTING { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WRDS_CONNECTION_SETTINGS { |
| pub WRdsConnectionSettingLevel: WRDS_CONNECTION_SETTING_LEVEL, |
| pub WRdsConnectionSetting: WRDS_CONNECTION_SETTING, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WRDS_CONNECTION_SETTINGS {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WRDS_CONNECTION_SETTINGS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WRDS_CONNECTION_SETTINGS { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WRDS_CONNECTION_SETTINGS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_CONNECTION_SETTINGS>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WRDS_CONNECTION_SETTINGS {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WRDS_CONNECTION_SETTINGS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WRDS_CONNECTION_SETTINGS_1 { |
| pub fInheritInitialProgram: super::super::Foundation::BOOLEAN, |
| pub fInheritColorDepth: super::super::Foundation::BOOLEAN, |
| pub fHideTitleBar: super::super::Foundation::BOOLEAN, |
| pub fInheritAutoLogon: super::super::Foundation::BOOLEAN, |
| pub fMaximizeShell: super::super::Foundation::BOOLEAN, |
| pub fDisablePNP: super::super::Foundation::BOOLEAN, |
| pub fPasswordIsScPin: super::super::Foundation::BOOLEAN, |
| pub fPromptForPassword: super::super::Foundation::BOOLEAN, |
| pub fDisableCpm: super::super::Foundation::BOOLEAN, |
| pub fDisableCdm: super::super::Foundation::BOOLEAN, |
| pub fDisableCcm: super::super::Foundation::BOOLEAN, |
| pub fDisableLPT: super::super::Foundation::BOOLEAN, |
| pub fDisableClip: super::super::Foundation::BOOLEAN, |
| pub fResetBroken: super::super::Foundation::BOOLEAN, |
| pub fDisableEncryption: super::super::Foundation::BOOLEAN, |
| pub fDisableAutoReconnect: super::super::Foundation::BOOLEAN, |
| pub fDisableCtrlAltDel: super::super::Foundation::BOOLEAN, |
| pub fDoubleClickDetect: super::super::Foundation::BOOLEAN, |
| pub fEnableWindowsKey: super::super::Foundation::BOOLEAN, |
| pub fUsingSavedCreds: super::super::Foundation::BOOLEAN, |
| pub fMouse: super::super::Foundation::BOOLEAN, |
| pub fNoAudioPlayback: super::super::Foundation::BOOLEAN, |
| pub fRemoteConsoleAudio: super::super::Foundation::BOOLEAN, |
| pub EncryptionLevel: u8, |
| pub ColorDepth: u16, |
| pub ProtocolType: u16, |
| pub HRes: u16, |
| pub VRes: u16, |
| pub ClientProductId: u16, |
| pub OutBufCountHost: u16, |
| pub OutBufCountClient: u16, |
| pub OutBufLength: u16, |
| pub KeyboardLayout: u32, |
| pub MaxConnectionTime: u32, |
| pub MaxDisconnectionTime: u32, |
| pub MaxIdleTime: u32, |
| pub PerformanceFlags: u32, |
| pub KeyboardType: u32, |
| pub KeyboardSubType: u32, |
| pub KeyboardFunctionKey: u32, |
| pub ActiveInputLocale: u32, |
| pub SerialNumber: u32, |
| pub ClientAddressFamily: u32, |
| pub ClientBuildNumber: u32, |
| pub ClientSessionId: u32, |
| pub WorkDirectory: [u16; 257], |
| pub InitialProgram: [u16; 257], |
| pub UserName: [u16; 256], |
| pub Domain: [u16; 256], |
| pub Password: [u16; 256], |
| pub ProtocolName: [u16; 9], |
| pub DisplayDriverName: [u16; 9], |
| pub DisplayDeviceName: [u16; 20], |
| pub imeFileName: [u16; 33], |
| pub AudioDriverName: [u16; 9], |
| pub ClientName: [u16; 21], |
| pub ClientAddress: [u16; 31], |
| pub ClientDirectory: [u16; 257], |
| pub ClientDigProductId: [u16; 33], |
| pub ClientSockAddress: WTS_SOCKADDR, |
| pub ClientTimeZone: WTS_TIME_ZONE_INFORMATION, |
| pub WRdsListenerSettings: WRDS_LISTENER_SETTINGS, |
| pub EventLogActivityId: ::windows::core::GUID, |
| pub ContextSize: u32, |
| pub ContextData: *mut u8, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WRDS_CONNECTION_SETTINGS_1 {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WRDS_CONNECTION_SETTINGS_1 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WRDS_CONNECTION_SETTINGS_1 { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WRDS_CONNECTION_SETTINGS_1 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_CONNECTION_SETTINGS_1>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WRDS_CONNECTION_SETTINGS_1 {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WRDS_CONNECTION_SETTINGS_1 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WRDS_DYNAMIC_TIME_ZONE_INFORMATION { |
| pub Bias: i32, |
| pub StandardName: [u16; 32], |
| pub StandardDate: WTS_SYSTEMTIME, |
| pub StandardBias: i32, |
| pub DaylightName: [u16; 32], |
| pub DaylightDate: WTS_SYSTEMTIME, |
| pub DaylightBias: i32, |
| pub TimeZoneKeyName: [u16; 128], |
| pub DynamicDaylightTimeDisabled: u16, |
| } |
| impl ::core::marker::Copy for WRDS_DYNAMIC_TIME_ZONE_INFORMATION {} |
| impl ::core::clone::Clone for WRDS_DYNAMIC_TIME_ZONE_INFORMATION { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WRDS_DYNAMIC_TIME_ZONE_INFORMATION { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WRDS_DYNAMIC_TIME_ZONE_INFORMATION").field("Bias", &self.Bias).field("StandardName", &self.StandardName).field("StandardDate", &self.StandardDate).field("StandardBias", &self.StandardBias).field("DaylightName", &self.DaylightName).field("DaylightDate", &self.DaylightDate).field("DaylightBias", &self.DaylightBias).field("TimeZoneKeyName", &self.TimeZoneKeyName).field("DynamicDaylightTimeDisabled", &self.DynamicDaylightTimeDisabled).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_DYNAMIC_TIME_ZONE_INFORMATION { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WRDS_DYNAMIC_TIME_ZONE_INFORMATION { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_DYNAMIC_TIME_ZONE_INFORMATION>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WRDS_DYNAMIC_TIME_ZONE_INFORMATION {} |
| impl ::core::default::Default for WRDS_DYNAMIC_TIME_ZONE_INFORMATION { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub union WRDS_LISTENER_SETTING { |
| pub WRdsListenerSettings1: WRDS_LISTENER_SETTINGS_1, |
| } |
| impl ::core::marker::Copy for WRDS_LISTENER_SETTING {} |
| impl ::core::clone::Clone for WRDS_LISTENER_SETTING { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_LISTENER_SETTING { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WRDS_LISTENER_SETTING { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_LISTENER_SETTING>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WRDS_LISTENER_SETTING {} |
| impl ::core::default::Default for WRDS_LISTENER_SETTING { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WRDS_LISTENER_SETTINGS { |
| pub WRdsListenerSettingLevel: WRDS_LISTENER_SETTING_LEVEL, |
| pub WRdsListenerSetting: WRDS_LISTENER_SETTING, |
| } |
| impl ::core::marker::Copy for WRDS_LISTENER_SETTINGS {} |
| impl ::core::clone::Clone for WRDS_LISTENER_SETTINGS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_LISTENER_SETTINGS { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WRDS_LISTENER_SETTINGS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_LISTENER_SETTINGS>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WRDS_LISTENER_SETTINGS {} |
| impl ::core::default::Default for WRDS_LISTENER_SETTINGS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WRDS_LISTENER_SETTINGS_1 { |
| pub MaxProtocolListenerConnectionCount: u32, |
| pub SecurityDescriptorSize: u32, |
| pub pSecurityDescriptor: *mut u8, |
| } |
| impl ::core::marker::Copy for WRDS_LISTENER_SETTINGS_1 {} |
| impl ::core::clone::Clone for WRDS_LISTENER_SETTINGS_1 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WRDS_LISTENER_SETTINGS_1 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WRDS_LISTENER_SETTINGS_1").field("MaxProtocolListenerConnectionCount", &self.MaxProtocolListenerConnectionCount).field("SecurityDescriptorSize", &self.SecurityDescriptorSize).field("pSecurityDescriptor", &self.pSecurityDescriptor).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WRDS_LISTENER_SETTINGS_1 { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WRDS_LISTENER_SETTINGS_1 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_LISTENER_SETTINGS_1>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WRDS_LISTENER_SETTINGS_1 {} |
| impl ::core::default::Default for WRDS_LISTENER_SETTINGS_1 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub union WRDS_SETTING { |
| pub WRdsSettings1: WRDS_SETTINGS_1, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WRDS_SETTING {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WRDS_SETTING { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WRDS_SETTING { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WRDS_SETTING { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_SETTING>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WRDS_SETTING {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WRDS_SETTING { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WRDS_SETTINGS { |
| pub WRdsSettingType: WRDS_SETTING_TYPE, |
| pub WRdsSettingLevel: WRDS_SETTING_LEVEL, |
| pub WRdsSetting: WRDS_SETTING, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WRDS_SETTINGS {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WRDS_SETTINGS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WRDS_SETTINGS { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WRDS_SETTINGS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_SETTINGS>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WRDS_SETTINGS {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WRDS_SETTINGS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WRDS_SETTINGS_1 { |
| pub WRdsDisableClipStatus: WRDS_SETTING_STATUS, |
| pub WRdsDisableClipValue: u32, |
| pub WRdsDisableLPTStatus: WRDS_SETTING_STATUS, |
| pub WRdsDisableLPTValue: u32, |
| pub WRdsDisableCcmStatus: WRDS_SETTING_STATUS, |
| pub WRdsDisableCcmValue: u32, |
| pub WRdsDisableCdmStatus: WRDS_SETTING_STATUS, |
| pub WRdsDisableCdmValue: u32, |
| pub WRdsDisableCpmStatus: WRDS_SETTING_STATUS, |
| pub WRdsDisableCpmValue: u32, |
| pub WRdsDisablePnpStatus: WRDS_SETTING_STATUS, |
| pub WRdsDisablePnpValue: u32, |
| pub WRdsEncryptionLevelStatus: WRDS_SETTING_STATUS, |
| pub WRdsEncryptionValue: u32, |
| pub WRdsColorDepthStatus: WRDS_SETTING_STATUS, |
| pub WRdsColorDepthValue: u32, |
| pub WRdsDisableAutoReconnecetStatus: WRDS_SETTING_STATUS, |
| pub WRdsDisableAutoReconnecetValue: u32, |
| pub WRdsDisableEncryptionStatus: WRDS_SETTING_STATUS, |
| pub WRdsDisableEncryptionValue: u32, |
| pub WRdsResetBrokenStatus: WRDS_SETTING_STATUS, |
| pub WRdsResetBrokenValue: u32, |
| pub WRdsMaxIdleTimeStatus: WRDS_SETTING_STATUS, |
| pub WRdsMaxIdleTimeValue: u32, |
| pub WRdsMaxDisconnectTimeStatus: WRDS_SETTING_STATUS, |
| pub WRdsMaxDisconnectTimeValue: u32, |
| pub WRdsMaxConnectTimeStatus: WRDS_SETTING_STATUS, |
| pub WRdsMaxConnectTimeValue: u32, |
| pub WRdsKeepAliveStatus: WRDS_SETTING_STATUS, |
| pub WRdsKeepAliveStartValue: super::super::Foundation::BOOLEAN, |
| pub WRdsKeepAliveIntervalValue: u32, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WRDS_SETTINGS_1 {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WRDS_SETTINGS_1 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WRDS_SETTINGS_1 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WRDS_SETTINGS_1") |
| .field("WRdsDisableClipStatus", &self.WRdsDisableClipStatus) |
| .field("WRdsDisableClipValue", &self.WRdsDisableClipValue) |
| .field("WRdsDisableLPTStatus", &self.WRdsDisableLPTStatus) |
| .field("WRdsDisableLPTValue", &self.WRdsDisableLPTValue) |
| .field("WRdsDisableCcmStatus", &self.WRdsDisableCcmStatus) |
| .field("WRdsDisableCcmValue", &self.WRdsDisableCcmValue) |
| .field("WRdsDisableCdmStatus", &self.WRdsDisableCdmStatus) |
| .field("WRdsDisableCdmValue", &self.WRdsDisableCdmValue) |
| .field("WRdsDisableCpmStatus", &self.WRdsDisableCpmStatus) |
| .field("WRdsDisableCpmValue", &self.WRdsDisableCpmValue) |
| .field("WRdsDisablePnpStatus", &self.WRdsDisablePnpStatus) |
| .field("WRdsDisablePnpValue", &self.WRdsDisablePnpValue) |
| .field("WRdsEncryptionLevelStatus", &self.WRdsEncryptionLevelStatus) |
| .field("WRdsEncryptionValue", &self.WRdsEncryptionValue) |
| .field("WRdsColorDepthStatus", &self.WRdsColorDepthStatus) |
| .field("WRdsColorDepthValue", &self.WRdsColorDepthValue) |
| .field("WRdsDisableAutoReconnecetStatus", &self.WRdsDisableAutoReconnecetStatus) |
| .field("WRdsDisableAutoReconnecetValue", &self.WRdsDisableAutoReconnecetValue) |
| .field("WRdsDisableEncryptionStatus", &self.WRdsDisableEncryptionStatus) |
| .field("WRdsDisableEncryptionValue", &self.WRdsDisableEncryptionValue) |
| .field("WRdsResetBrokenStatus", &self.WRdsResetBrokenStatus) |
| .field("WRdsResetBrokenValue", &self.WRdsResetBrokenValue) |
| .field("WRdsMaxIdleTimeStatus", &self.WRdsMaxIdleTimeStatus) |
| .field("WRdsMaxIdleTimeValue", &self.WRdsMaxIdleTimeValue) |
| .field("WRdsMaxDisconnectTimeStatus", &self.WRdsMaxDisconnectTimeStatus) |
| .field("WRdsMaxDisconnectTimeValue", &self.WRdsMaxDisconnectTimeValue) |
| .field("WRdsMaxConnectTimeStatus", &self.WRdsMaxConnectTimeStatus) |
| .field("WRdsMaxConnectTimeValue", &self.WRdsMaxConnectTimeValue) |
| .field("WRdsKeepAliveStatus", &self.WRdsKeepAliveStatus) |
| .field("WRdsKeepAliveStartValue", &self.WRdsKeepAliveStartValue) |
| .field("WRdsKeepAliveIntervalValue", &self.WRdsKeepAliveIntervalValue) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WRDS_SETTINGS_1 { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WRDS_SETTINGS_1 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WRDS_SETTINGS_1>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WRDS_SETTINGS_1 {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WRDS_SETTINGS_1 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTSCLIENTA { |
| pub ClientName: [super::super::Foundation::CHAR; 21], |
| pub Domain: [super::super::Foundation::CHAR; 18], |
| pub UserName: [super::super::Foundation::CHAR; 21], |
| pub WorkDirectory: [super::super::Foundation::CHAR; 261], |
| pub InitialProgram: [super::super::Foundation::CHAR; 261], |
| pub EncryptionLevel: u8, |
| pub ClientAddressFamily: u32, |
| pub ClientAddress: [u16; 31], |
| pub HRes: u16, |
| pub VRes: u16, |
| pub ColorDepth: u16, |
| pub ClientDirectory: [super::super::Foundation::CHAR; 261], |
| pub ClientBuildNumber: u32, |
| pub ClientHardwareId: u32, |
| pub ClientProductId: u16, |
| pub OutBufCountHost: u16, |
| pub OutBufCountClient: u16, |
| pub OutBufLength: u16, |
| pub DeviceId: [super::super::Foundation::CHAR; 261], |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSCLIENTA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSCLIENTA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTSCLIENTA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSCLIENTA") |
| .field("ClientName", &self.ClientName) |
| .field("Domain", &self.Domain) |
| .field("UserName", &self.UserName) |
| .field("WorkDirectory", &self.WorkDirectory) |
| .field("InitialProgram", &self.InitialProgram) |
| .field("EncryptionLevel", &self.EncryptionLevel) |
| .field("ClientAddressFamily", &self.ClientAddressFamily) |
| .field("ClientAddress", &self.ClientAddress) |
| .field("HRes", &self.HRes) |
| .field("VRes", &self.VRes) |
| .field("ColorDepth", &self.ColorDepth) |
| .field("ClientDirectory", &self.ClientDirectory) |
| .field("ClientBuildNumber", &self.ClientBuildNumber) |
| .field("ClientHardwareId", &self.ClientHardwareId) |
| .field("ClientProductId", &self.ClientProductId) |
| .field("OutBufCountHost", &self.OutBufCountHost) |
| .field("OutBufCountClient", &self.OutBufCountClient) |
| .field("OutBufLength", &self.OutBufLength) |
| .field("DeviceId", &self.DeviceId) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSCLIENTA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSCLIENTA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSCLIENTA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSCLIENTA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSCLIENTA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSCLIENTW { |
| pub ClientName: [u16; 21], |
| pub Domain: [u16; 18], |
| pub UserName: [u16; 21], |
| pub WorkDirectory: [u16; 261], |
| pub InitialProgram: [u16; 261], |
| pub EncryptionLevel: u8, |
| pub ClientAddressFamily: u32, |
| pub ClientAddress: [u16; 31], |
| pub HRes: u16, |
| pub VRes: u16, |
| pub ColorDepth: u16, |
| pub ClientDirectory: [u16; 261], |
| pub ClientBuildNumber: u32, |
| pub ClientHardwareId: u32, |
| pub ClientProductId: u16, |
| pub OutBufCountHost: u16, |
| pub OutBufCountClient: u16, |
| pub OutBufLength: u16, |
| pub DeviceId: [u16; 261], |
| } |
| impl ::core::marker::Copy for WTSCLIENTW {} |
| impl ::core::clone::Clone for WTSCLIENTW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSCLIENTW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSCLIENTW") |
| .field("ClientName", &self.ClientName) |
| .field("Domain", &self.Domain) |
| .field("UserName", &self.UserName) |
| .field("WorkDirectory", &self.WorkDirectory) |
| .field("InitialProgram", &self.InitialProgram) |
| .field("EncryptionLevel", &self.EncryptionLevel) |
| .field("ClientAddressFamily", &self.ClientAddressFamily) |
| .field("ClientAddress", &self.ClientAddress) |
| .field("HRes", &self.HRes) |
| .field("VRes", &self.VRes) |
| .field("ColorDepth", &self.ColorDepth) |
| .field("ClientDirectory", &self.ClientDirectory) |
| .field("ClientBuildNumber", &self.ClientBuildNumber) |
| .field("ClientHardwareId", &self.ClientHardwareId) |
| .field("ClientProductId", &self.ClientProductId) |
| .field("OutBufCountHost", &self.OutBufCountHost) |
| .field("OutBufCountClient", &self.OutBufCountClient) |
| .field("OutBufLength", &self.OutBufLength) |
| .field("DeviceId", &self.DeviceId) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSCLIENTW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSCLIENTW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSCLIENTW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSCLIENTW {} |
| impl ::core::default::Default for WTSCLIENTW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTSCONFIGINFOA { |
| pub version: u32, |
| pub fConnectClientDrivesAtLogon: u32, |
| pub fConnectPrinterAtLogon: u32, |
| pub fDisablePrinterRedirection: u32, |
| pub fDisableDefaultMainClientPrinter: u32, |
| pub ShadowSettings: u32, |
| pub LogonUserName: [super::super::Foundation::CHAR; 21], |
| pub LogonDomain: [super::super::Foundation::CHAR; 18], |
| pub WorkDirectory: [super::super::Foundation::CHAR; 261], |
| pub InitialProgram: [super::super::Foundation::CHAR; 261], |
| pub ApplicationName: [super::super::Foundation::CHAR; 261], |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSCONFIGINFOA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSCONFIGINFOA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTSCONFIGINFOA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSCONFIGINFOA") |
| .field("version", &self.version) |
| .field("fConnectClientDrivesAtLogon", &self.fConnectClientDrivesAtLogon) |
| .field("fConnectPrinterAtLogon", &self.fConnectPrinterAtLogon) |
| .field("fDisablePrinterRedirection", &self.fDisablePrinterRedirection) |
| .field("fDisableDefaultMainClientPrinter", &self.fDisableDefaultMainClientPrinter) |
| .field("ShadowSettings", &self.ShadowSettings) |
| .field("LogonUserName", &self.LogonUserName) |
| .field("LogonDomain", &self.LogonDomain) |
| .field("WorkDirectory", &self.WorkDirectory) |
| .field("InitialProgram", &self.InitialProgram) |
| .field("ApplicationName", &self.ApplicationName) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSCONFIGINFOA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSCONFIGINFOA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSCONFIGINFOA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSCONFIGINFOA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSCONFIGINFOA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSCONFIGINFOW { |
| pub version: u32, |
| pub fConnectClientDrivesAtLogon: u32, |
| pub fConnectPrinterAtLogon: u32, |
| pub fDisablePrinterRedirection: u32, |
| pub fDisableDefaultMainClientPrinter: u32, |
| pub ShadowSettings: u32, |
| pub LogonUserName: [u16; 21], |
| pub LogonDomain: [u16; 18], |
| pub WorkDirectory: [u16; 261], |
| pub InitialProgram: [u16; 261], |
| pub ApplicationName: [u16; 261], |
| } |
| impl ::core::marker::Copy for WTSCONFIGINFOW {} |
| impl ::core::clone::Clone for WTSCONFIGINFOW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSCONFIGINFOW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSCONFIGINFOW") |
| .field("version", &self.version) |
| .field("fConnectClientDrivesAtLogon", &self.fConnectClientDrivesAtLogon) |
| .field("fConnectPrinterAtLogon", &self.fConnectPrinterAtLogon) |
| .field("fDisablePrinterRedirection", &self.fDisablePrinterRedirection) |
| .field("fDisableDefaultMainClientPrinter", &self.fDisableDefaultMainClientPrinter) |
| .field("ShadowSettings", &self.ShadowSettings) |
| .field("LogonUserName", &self.LogonUserName) |
| .field("LogonDomain", &self.LogonDomain) |
| .field("WorkDirectory", &self.WorkDirectory) |
| .field("InitialProgram", &self.InitialProgram) |
| .field("ApplicationName", &self.ApplicationName) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSCONFIGINFOW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSCONFIGINFOW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSCONFIGINFOW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSCONFIGINFOW {} |
| impl ::core::default::Default for WTSCONFIGINFOW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTSINFOA { |
| pub State: WTS_CONNECTSTATE_CLASS, |
| pub SessionId: u32, |
| pub IncomingBytes: u32, |
| pub OutgoingBytes: u32, |
| pub IncomingFrames: u32, |
| pub OutgoingFrames: u32, |
| pub IncomingCompressedBytes: u32, |
| pub OutgoingCompressedBy: u32, |
| pub WinStationName: [super::super::Foundation::CHAR; 32], |
| pub Domain: [super::super::Foundation::CHAR; 17], |
| pub UserName: [super::super::Foundation::CHAR; 21], |
| pub ConnectTime: i64, |
| pub DisconnectTime: i64, |
| pub LastInputTime: i64, |
| pub LogonTime: i64, |
| pub CurrentTime: i64, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSINFOA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSINFOA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTSINFOA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSINFOA") |
| .field("State", &self.State) |
| .field("SessionId", &self.SessionId) |
| .field("IncomingBytes", &self.IncomingBytes) |
| .field("OutgoingBytes", &self.OutgoingBytes) |
| .field("IncomingFrames", &self.IncomingFrames) |
| .field("OutgoingFrames", &self.OutgoingFrames) |
| .field("IncomingCompressedBytes", &self.IncomingCompressedBytes) |
| .field("OutgoingCompressedBy", &self.OutgoingCompressedBy) |
| .field("WinStationName", &self.WinStationName) |
| .field("Domain", &self.Domain) |
| .field("UserName", &self.UserName) |
| .field("ConnectTime", &self.ConnectTime) |
| .field("DisconnectTime", &self.DisconnectTime) |
| .field("LastInputTime", &self.LastInputTime) |
| .field("LogonTime", &self.LogonTime) |
| .field("CurrentTime", &self.CurrentTime) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSINFOA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSINFOA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSINFOA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSINFOA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSINFOA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTSINFOEXA { |
| pub Level: u32, |
| pub Data: WTSINFOEX_LEVEL_A, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSINFOEXA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSINFOEXA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSINFOEXA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSINFOEXA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSINFOEXA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSINFOEXA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSINFOEXA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSINFOEXW { |
| pub Level: u32, |
| pub Data: WTSINFOEX_LEVEL_W, |
| } |
| impl ::core::marker::Copy for WTSINFOEXW {} |
| impl ::core::clone::Clone for WTSINFOEXW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSINFOEXW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSINFOEXW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSINFOEXW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSINFOEXW {} |
| impl ::core::default::Default for WTSINFOEXW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTSINFOEX_LEVEL1_A { |
| pub SessionId: u32, |
| pub SessionState: WTS_CONNECTSTATE_CLASS, |
| pub SessionFlags: i32, |
| pub WinStationName: [super::super::Foundation::CHAR; 33], |
| pub UserName: [super::super::Foundation::CHAR; 21], |
| pub DomainName: [super::super::Foundation::CHAR; 18], |
| pub LogonTime: i64, |
| pub ConnectTime: i64, |
| pub DisconnectTime: i64, |
| pub LastInputTime: i64, |
| pub CurrentTime: i64, |
| pub IncomingBytes: u32, |
| pub OutgoingBytes: u32, |
| pub IncomingFrames: u32, |
| pub OutgoingFrames: u32, |
| pub IncomingCompressedBytes: u32, |
| pub OutgoingCompressedBytes: u32, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSINFOEX_LEVEL1_A {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSINFOEX_LEVEL1_A { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTSINFOEX_LEVEL1_A { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSINFOEX_LEVEL1_A") |
| .field("SessionId", &self.SessionId) |
| .field("SessionState", &self.SessionState) |
| .field("SessionFlags", &self.SessionFlags) |
| .field("WinStationName", &self.WinStationName) |
| .field("UserName", &self.UserName) |
| .field("DomainName", &self.DomainName) |
| .field("LogonTime", &self.LogonTime) |
| .field("ConnectTime", &self.ConnectTime) |
| .field("DisconnectTime", &self.DisconnectTime) |
| .field("LastInputTime", &self.LastInputTime) |
| .field("CurrentTime", &self.CurrentTime) |
| .field("IncomingBytes", &self.IncomingBytes) |
| .field("OutgoingBytes", &self.OutgoingBytes) |
| .field("IncomingFrames", &self.IncomingFrames) |
| .field("OutgoingFrames", &self.OutgoingFrames) |
| .field("IncomingCompressedBytes", &self.IncomingCompressedBytes) |
| .field("OutgoingCompressedBytes", &self.OutgoingCompressedBytes) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSINFOEX_LEVEL1_A { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSINFOEX_LEVEL1_A { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSINFOEX_LEVEL1_A>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSINFOEX_LEVEL1_A {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSINFOEX_LEVEL1_A { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSINFOEX_LEVEL1_W { |
| pub SessionId: u32, |
| pub SessionState: WTS_CONNECTSTATE_CLASS, |
| pub SessionFlags: i32, |
| pub WinStationName: [u16; 33], |
| pub UserName: [u16; 21], |
| pub DomainName: [u16; 18], |
| pub LogonTime: i64, |
| pub ConnectTime: i64, |
| pub DisconnectTime: i64, |
| pub LastInputTime: i64, |
| pub CurrentTime: i64, |
| pub IncomingBytes: u32, |
| pub OutgoingBytes: u32, |
| pub IncomingFrames: u32, |
| pub OutgoingFrames: u32, |
| pub IncomingCompressedBytes: u32, |
| pub OutgoingCompressedBytes: u32, |
| } |
| impl ::core::marker::Copy for WTSINFOEX_LEVEL1_W {} |
| impl ::core::clone::Clone for WTSINFOEX_LEVEL1_W { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSINFOEX_LEVEL1_W { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSINFOEX_LEVEL1_W") |
| .field("SessionId", &self.SessionId) |
| .field("SessionState", &self.SessionState) |
| .field("SessionFlags", &self.SessionFlags) |
| .field("WinStationName", &self.WinStationName) |
| .field("UserName", &self.UserName) |
| .field("DomainName", &self.DomainName) |
| .field("LogonTime", &self.LogonTime) |
| .field("ConnectTime", &self.ConnectTime) |
| .field("DisconnectTime", &self.DisconnectTime) |
| .field("LastInputTime", &self.LastInputTime) |
| .field("CurrentTime", &self.CurrentTime) |
| .field("IncomingBytes", &self.IncomingBytes) |
| .field("OutgoingBytes", &self.OutgoingBytes) |
| .field("IncomingFrames", &self.IncomingFrames) |
| .field("OutgoingFrames", &self.OutgoingFrames) |
| .field("IncomingCompressedBytes", &self.IncomingCompressedBytes) |
| .field("OutgoingCompressedBytes", &self.OutgoingCompressedBytes) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSINFOEX_LEVEL1_W { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSINFOEX_LEVEL1_W { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSINFOEX_LEVEL1_W>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSINFOEX_LEVEL1_W {} |
| impl ::core::default::Default for WTSINFOEX_LEVEL1_W { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub union WTSINFOEX_LEVEL_A { |
| pub WTSInfoExLevel1: WTSINFOEX_LEVEL1_A, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSINFOEX_LEVEL_A {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSINFOEX_LEVEL_A { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSINFOEX_LEVEL_A { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSINFOEX_LEVEL_A { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSINFOEX_LEVEL_A>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSINFOEX_LEVEL_A {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSINFOEX_LEVEL_A { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub union WTSINFOEX_LEVEL_W { |
| pub WTSInfoExLevel1: WTSINFOEX_LEVEL1_W, |
| } |
| impl ::core::marker::Copy for WTSINFOEX_LEVEL_W {} |
| impl ::core::clone::Clone for WTSINFOEX_LEVEL_W { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSINFOEX_LEVEL_W { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSINFOEX_LEVEL_W { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSINFOEX_LEVEL_W>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSINFOEX_LEVEL_W {} |
| impl ::core::default::Default for WTSINFOEX_LEVEL_W { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSINFOW { |
| pub State: WTS_CONNECTSTATE_CLASS, |
| pub SessionId: u32, |
| pub IncomingBytes: u32, |
| pub OutgoingBytes: u32, |
| pub IncomingFrames: u32, |
| pub OutgoingFrames: u32, |
| pub IncomingCompressedBytes: u32, |
| pub OutgoingCompressedBytes: u32, |
| pub WinStationName: [u16; 32], |
| pub Domain: [u16; 17], |
| pub UserName: [u16; 21], |
| pub ConnectTime: i64, |
| pub DisconnectTime: i64, |
| pub LastInputTime: i64, |
| pub LogonTime: i64, |
| pub CurrentTime: i64, |
| } |
| impl ::core::marker::Copy for WTSINFOW {} |
| impl ::core::clone::Clone for WTSINFOW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSINFOW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSINFOW") |
| .field("State", &self.State) |
| .field("SessionId", &self.SessionId) |
| .field("IncomingBytes", &self.IncomingBytes) |
| .field("OutgoingBytes", &self.OutgoingBytes) |
| .field("IncomingFrames", &self.IncomingFrames) |
| .field("OutgoingFrames", &self.OutgoingFrames) |
| .field("IncomingCompressedBytes", &self.IncomingCompressedBytes) |
| .field("OutgoingCompressedBytes", &self.OutgoingCompressedBytes) |
| .field("WinStationName", &self.WinStationName) |
| .field("Domain", &self.Domain) |
| .field("UserName", &self.UserName) |
| .field("ConnectTime", &self.ConnectTime) |
| .field("DisconnectTime", &self.DisconnectTime) |
| .field("LastInputTime", &self.LastInputTime) |
| .field("LogonTime", &self.LogonTime) |
| .field("CurrentTime", &self.CurrentTime) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSINFOW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSINFOW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSINFOW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSINFOW {} |
| impl ::core::default::Default for WTSINFOW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTSLISTENERCONFIGA { |
| pub version: u32, |
| pub fEnableListener: u32, |
| pub MaxConnectionCount: u32, |
| pub fPromptForPassword: u32, |
| pub fInheritColorDepth: u32, |
| pub ColorDepth: u32, |
| pub fInheritBrokenTimeoutSettings: u32, |
| pub BrokenTimeoutSettings: u32, |
| pub fDisablePrinterRedirection: u32, |
| pub fDisableDriveRedirection: u32, |
| pub fDisableComPortRedirection: u32, |
| pub fDisableLPTPortRedirection: u32, |
| pub fDisableClipboardRedirection: u32, |
| pub fDisableAudioRedirection: u32, |
| pub fDisablePNPRedirection: u32, |
| pub fDisableDefaultMainClientPrinter: u32, |
| pub LanAdapter: u32, |
| pub PortNumber: u32, |
| pub fInheritShadowSettings: u32, |
| pub ShadowSettings: u32, |
| pub TimeoutSettingsConnection: u32, |
| pub TimeoutSettingsDisconnection: u32, |
| pub TimeoutSettingsIdle: u32, |
| pub SecurityLayer: u32, |
| pub MinEncryptionLevel: u32, |
| pub UserAuthentication: u32, |
| pub Comment: [super::super::Foundation::CHAR; 61], |
| pub LogonUserName: [super::super::Foundation::CHAR; 21], |
| pub LogonDomain: [super::super::Foundation::CHAR; 18], |
| pub WorkDirectory: [super::super::Foundation::CHAR; 261], |
| pub InitialProgram: [super::super::Foundation::CHAR; 261], |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSLISTENERCONFIGA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSLISTENERCONFIGA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTSLISTENERCONFIGA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSLISTENERCONFIGA") |
| .field("version", &self.version) |
| .field("fEnableListener", &self.fEnableListener) |
| .field("MaxConnectionCount", &self.MaxConnectionCount) |
| .field("fPromptForPassword", &self.fPromptForPassword) |
| .field("fInheritColorDepth", &self.fInheritColorDepth) |
| .field("ColorDepth", &self.ColorDepth) |
| .field("fInheritBrokenTimeoutSettings", &self.fInheritBrokenTimeoutSettings) |
| .field("BrokenTimeoutSettings", &self.BrokenTimeoutSettings) |
| .field("fDisablePrinterRedirection", &self.fDisablePrinterRedirection) |
| .field("fDisableDriveRedirection", &self.fDisableDriveRedirection) |
| .field("fDisableComPortRedirection", &self.fDisableComPortRedirection) |
| .field("fDisableLPTPortRedirection", &self.fDisableLPTPortRedirection) |
| .field("fDisableClipboardRedirection", &self.fDisableClipboardRedirection) |
| .field("fDisableAudioRedirection", &self.fDisableAudioRedirection) |
| .field("fDisablePNPRedirection", &self.fDisablePNPRedirection) |
| .field("fDisableDefaultMainClientPrinter", &self.fDisableDefaultMainClientPrinter) |
| .field("LanAdapter", &self.LanAdapter) |
| .field("PortNumber", &self.PortNumber) |
| .field("fInheritShadowSettings", &self.fInheritShadowSettings) |
| .field("ShadowSettings", &self.ShadowSettings) |
| .field("TimeoutSettingsConnection", &self.TimeoutSettingsConnection) |
| .field("TimeoutSettingsDisconnection", &self.TimeoutSettingsDisconnection) |
| .field("TimeoutSettingsIdle", &self.TimeoutSettingsIdle) |
| .field("SecurityLayer", &self.SecurityLayer) |
| .field("MinEncryptionLevel", &self.MinEncryptionLevel) |
| .field("UserAuthentication", &self.UserAuthentication) |
| .field("Comment", &self.Comment) |
| .field("LogonUserName", &self.LogonUserName) |
| .field("LogonDomain", &self.LogonDomain) |
| .field("WorkDirectory", &self.WorkDirectory) |
| .field("InitialProgram", &self.InitialProgram) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSLISTENERCONFIGA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSLISTENERCONFIGA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSLISTENERCONFIGA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSLISTENERCONFIGA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSLISTENERCONFIGA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSLISTENERCONFIGW { |
| pub version: u32, |
| pub fEnableListener: u32, |
| pub MaxConnectionCount: u32, |
| pub fPromptForPassword: u32, |
| pub fInheritColorDepth: u32, |
| pub ColorDepth: u32, |
| pub fInheritBrokenTimeoutSettings: u32, |
| pub BrokenTimeoutSettings: u32, |
| pub fDisablePrinterRedirection: u32, |
| pub fDisableDriveRedirection: u32, |
| pub fDisableComPortRedirection: u32, |
| pub fDisableLPTPortRedirection: u32, |
| pub fDisableClipboardRedirection: u32, |
| pub fDisableAudioRedirection: u32, |
| pub fDisablePNPRedirection: u32, |
| pub fDisableDefaultMainClientPrinter: u32, |
| pub LanAdapter: u32, |
| pub PortNumber: u32, |
| pub fInheritShadowSettings: u32, |
| pub ShadowSettings: u32, |
| pub TimeoutSettingsConnection: u32, |
| pub TimeoutSettingsDisconnection: u32, |
| pub TimeoutSettingsIdle: u32, |
| pub SecurityLayer: u32, |
| pub MinEncryptionLevel: u32, |
| pub UserAuthentication: u32, |
| pub Comment: [u16; 61], |
| pub LogonUserName: [u16; 21], |
| pub LogonDomain: [u16; 18], |
| pub WorkDirectory: [u16; 261], |
| pub InitialProgram: [u16; 261], |
| } |
| impl ::core::marker::Copy for WTSLISTENERCONFIGW {} |
| impl ::core::clone::Clone for WTSLISTENERCONFIGW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSLISTENERCONFIGW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSLISTENERCONFIGW") |
| .field("version", &self.version) |
| .field("fEnableListener", &self.fEnableListener) |
| .field("MaxConnectionCount", &self.MaxConnectionCount) |
| .field("fPromptForPassword", &self.fPromptForPassword) |
| .field("fInheritColorDepth", &self.fInheritColorDepth) |
| .field("ColorDepth", &self.ColorDepth) |
| .field("fInheritBrokenTimeoutSettings", &self.fInheritBrokenTimeoutSettings) |
| .field("BrokenTimeoutSettings", &self.BrokenTimeoutSettings) |
| .field("fDisablePrinterRedirection", &self.fDisablePrinterRedirection) |
| .field("fDisableDriveRedirection", &self.fDisableDriveRedirection) |
| .field("fDisableComPortRedirection", &self.fDisableComPortRedirection) |
| .field("fDisableLPTPortRedirection", &self.fDisableLPTPortRedirection) |
| .field("fDisableClipboardRedirection", &self.fDisableClipboardRedirection) |
| .field("fDisableAudioRedirection", &self.fDisableAudioRedirection) |
| .field("fDisablePNPRedirection", &self.fDisablePNPRedirection) |
| .field("fDisableDefaultMainClientPrinter", &self.fDisableDefaultMainClientPrinter) |
| .field("LanAdapter", &self.LanAdapter) |
| .field("PortNumber", &self.PortNumber) |
| .field("fInheritShadowSettings", &self.fInheritShadowSettings) |
| .field("ShadowSettings", &self.ShadowSettings) |
| .field("TimeoutSettingsConnection", &self.TimeoutSettingsConnection) |
| .field("TimeoutSettingsDisconnection", &self.TimeoutSettingsDisconnection) |
| .field("TimeoutSettingsIdle", &self.TimeoutSettingsIdle) |
| .field("SecurityLayer", &self.SecurityLayer) |
| .field("MinEncryptionLevel", &self.MinEncryptionLevel) |
| .field("UserAuthentication", &self.UserAuthentication) |
| .field("Comment", &self.Comment) |
| .field("LogonUserName", &self.LogonUserName) |
| .field("LogonDomain", &self.LogonDomain) |
| .field("WorkDirectory", &self.WorkDirectory) |
| .field("InitialProgram", &self.InitialProgram) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSLISTENERCONFIGW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSLISTENERCONFIGW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSLISTENERCONFIGW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSLISTENERCONFIGW {} |
| impl ::core::default::Default for WTSLISTENERCONFIGW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSSBX_IP_ADDRESS { |
| pub AddressFamily: WTSSBX_ADDRESS_FAMILY, |
| pub Address: [u8; 16], |
| pub PortNumber: u16, |
| pub dwScope: u32, |
| } |
| impl ::core::marker::Copy for WTSSBX_IP_ADDRESS {} |
| impl ::core::clone::Clone for WTSSBX_IP_ADDRESS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSSBX_IP_ADDRESS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSSBX_IP_ADDRESS").field("AddressFamily", &self.AddressFamily).field("Address", &self.Address).field("PortNumber", &self.PortNumber).field("dwScope", &self.dwScope).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_IP_ADDRESS { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSSBX_IP_ADDRESS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSSBX_IP_ADDRESS>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSSBX_IP_ADDRESS {} |
| impl ::core::default::Default for WTSSBX_IP_ADDRESS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSSBX_MACHINE_CONNECT_INFO { |
| pub wczMachineFQDN: [u16; 257], |
| pub wczMachineNetBiosName: [u16; 17], |
| pub dwNumOfIPAddr: u32, |
| pub IPaddr: [WTSSBX_IP_ADDRESS; 12], |
| } |
| impl ::core::marker::Copy for WTSSBX_MACHINE_CONNECT_INFO {} |
| impl ::core::clone::Clone for WTSSBX_MACHINE_CONNECT_INFO { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSSBX_MACHINE_CONNECT_INFO { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSSBX_MACHINE_CONNECT_INFO").field("wczMachineFQDN", &self.wczMachineFQDN).field("wczMachineNetBiosName", &self.wczMachineNetBiosName).field("dwNumOfIPAddr", &self.dwNumOfIPAddr).field("IPaddr", &self.IPaddr).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_MACHINE_CONNECT_INFO { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSSBX_MACHINE_CONNECT_INFO { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSSBX_MACHINE_CONNECT_INFO>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSSBX_MACHINE_CONNECT_INFO {} |
| impl ::core::default::Default for WTSSBX_MACHINE_CONNECT_INFO { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSSBX_MACHINE_INFO { |
| pub ClientConnectInfo: WTSSBX_MACHINE_CONNECT_INFO, |
| pub wczFarmName: [u16; 257], |
| pub InternalIPAddress: WTSSBX_IP_ADDRESS, |
| pub dwMaxSessionsLimit: u32, |
| pub ServerWeight: u32, |
| pub SingleSessionMode: WTSSBX_MACHINE_SESSION_MODE, |
| pub InDrain: WTSSBX_MACHINE_DRAIN, |
| pub MachineState: WTSSBX_MACHINE_STATE, |
| } |
| impl ::core::marker::Copy for WTSSBX_MACHINE_INFO {} |
| impl ::core::clone::Clone for WTSSBX_MACHINE_INFO { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSSBX_MACHINE_INFO { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSSBX_MACHINE_INFO").field("ClientConnectInfo", &self.ClientConnectInfo).field("wczFarmName", &self.wczFarmName).field("InternalIPAddress", &self.InternalIPAddress).field("dwMaxSessionsLimit", &self.dwMaxSessionsLimit).field("ServerWeight", &self.ServerWeight).field("SingleSessionMode", &self.SingleSessionMode).field("InDrain", &self.InDrain).field("MachineState", &self.MachineState).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSBX_MACHINE_INFO { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSSBX_MACHINE_INFO { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSSBX_MACHINE_INFO>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSSBX_MACHINE_INFO {} |
| impl ::core::default::Default for WTSSBX_MACHINE_INFO { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTSSBX_SESSION_INFO { |
| pub wszUserName: [u16; 105], |
| pub wszDomainName: [u16; 257], |
| pub ApplicationType: [u16; 257], |
| pub dwSessionId: u32, |
| pub CreateTime: super::super::Foundation::FILETIME, |
| pub DisconnectTime: super::super::Foundation::FILETIME, |
| pub SessionState: WTSSBX_SESSION_STATE, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSSBX_SESSION_INFO {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSSBX_SESSION_INFO { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTSSBX_SESSION_INFO { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSSBX_SESSION_INFO").field("wszUserName", &self.wszUserName).field("wszDomainName", &self.wszDomainName).field("ApplicationType", &self.ApplicationType).field("dwSessionId", &self.dwSessionId).field("CreateTime", &self.CreateTime).field("DisconnectTime", &self.DisconnectTime).field("SessionState", &self.SessionState).finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSSBX_SESSION_INFO { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSSBX_SESSION_INFO { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSSBX_SESSION_INFO>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSSBX_SESSION_INFO {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSSBX_SESSION_INFO { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSSESSION_NOTIFICATION { |
| pub cbSize: u32, |
| pub dwSessionId: u32, |
| } |
| impl ::core::marker::Copy for WTSSESSION_NOTIFICATION {} |
| impl ::core::clone::Clone for WTSSESSION_NOTIFICATION { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSSESSION_NOTIFICATION { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSSESSION_NOTIFICATION").field("cbSize", &self.cbSize).field("dwSessionId", &self.dwSessionId).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSSESSION_NOTIFICATION { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSSESSION_NOTIFICATION { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSSESSION_NOTIFICATION>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSSESSION_NOTIFICATION {} |
| impl ::core::default::Default for WTSSESSION_NOTIFICATION { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTSUSERCONFIGA { |
| pub Source: u32, |
| pub InheritInitialProgram: u32, |
| pub AllowLogonTerminalServer: u32, |
| pub TimeoutSettingsConnections: u32, |
| pub TimeoutSettingsDisconnections: u32, |
| pub TimeoutSettingsIdle: u32, |
| pub DeviceClientDrives: u32, |
| pub DeviceClientPrinters: u32, |
| pub ClientDefaultPrinter: u32, |
| pub BrokenTimeoutSettings: u32, |
| pub ReconnectSettings: u32, |
| pub ShadowingSettings: u32, |
| pub TerminalServerRemoteHomeDir: u32, |
| pub InitialProgram: [super::super::Foundation::CHAR; 261], |
| pub WorkDirectory: [super::super::Foundation::CHAR; 261], |
| pub TerminalServerProfilePath: [super::super::Foundation::CHAR; 261], |
| pub TerminalServerHomeDir: [super::super::Foundation::CHAR; 261], |
| pub TerminalServerHomeDirDrive: [super::super::Foundation::CHAR; 4], |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTSUSERCONFIGA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTSUSERCONFIGA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTSUSERCONFIGA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSUSERCONFIGA") |
| .field("Source", &self.Source) |
| .field("InheritInitialProgram", &self.InheritInitialProgram) |
| .field("AllowLogonTerminalServer", &self.AllowLogonTerminalServer) |
| .field("TimeoutSettingsConnections", &self.TimeoutSettingsConnections) |
| .field("TimeoutSettingsDisconnections", &self.TimeoutSettingsDisconnections) |
| .field("TimeoutSettingsIdle", &self.TimeoutSettingsIdle) |
| .field("DeviceClientDrives", &self.DeviceClientDrives) |
| .field("DeviceClientPrinters", &self.DeviceClientPrinters) |
| .field("ClientDefaultPrinter", &self.ClientDefaultPrinter) |
| .field("BrokenTimeoutSettings", &self.BrokenTimeoutSettings) |
| .field("ReconnectSettings", &self.ReconnectSettings) |
| .field("ShadowingSettings", &self.ShadowingSettings) |
| .field("TerminalServerRemoteHomeDir", &self.TerminalServerRemoteHomeDir) |
| .field("InitialProgram", &self.InitialProgram) |
| .field("WorkDirectory", &self.WorkDirectory) |
| .field("TerminalServerProfilePath", &self.TerminalServerProfilePath) |
| .field("TerminalServerHomeDir", &self.TerminalServerHomeDir) |
| .field("TerminalServerHomeDirDrive", &self.TerminalServerHomeDirDrive) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTSUSERCONFIGA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTSUSERCONFIGA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSUSERCONFIGA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTSUSERCONFIGA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTSUSERCONFIGA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTSUSERCONFIGW { |
| pub Source: u32, |
| pub InheritInitialProgram: u32, |
| pub AllowLogonTerminalServer: u32, |
| pub TimeoutSettingsConnections: u32, |
| pub TimeoutSettingsDisconnections: u32, |
| pub TimeoutSettingsIdle: u32, |
| pub DeviceClientDrives: u32, |
| pub DeviceClientPrinters: u32, |
| pub ClientDefaultPrinter: u32, |
| pub BrokenTimeoutSettings: u32, |
| pub ReconnectSettings: u32, |
| pub ShadowingSettings: u32, |
| pub TerminalServerRemoteHomeDir: u32, |
| pub InitialProgram: [u16; 261], |
| pub WorkDirectory: [u16; 261], |
| pub TerminalServerProfilePath: [u16; 261], |
| pub TerminalServerHomeDir: [u16; 261], |
| pub TerminalServerHomeDirDrive: [u16; 4], |
| } |
| impl ::core::marker::Copy for WTSUSERCONFIGW {} |
| impl ::core::clone::Clone for WTSUSERCONFIGW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTSUSERCONFIGW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTSUSERCONFIGW") |
| .field("Source", &self.Source) |
| .field("InheritInitialProgram", &self.InheritInitialProgram) |
| .field("AllowLogonTerminalServer", &self.AllowLogonTerminalServer) |
| .field("TimeoutSettingsConnections", &self.TimeoutSettingsConnections) |
| .field("TimeoutSettingsDisconnections", &self.TimeoutSettingsDisconnections) |
| .field("TimeoutSettingsIdle", &self.TimeoutSettingsIdle) |
| .field("DeviceClientDrives", &self.DeviceClientDrives) |
| .field("DeviceClientPrinters", &self.DeviceClientPrinters) |
| .field("ClientDefaultPrinter", &self.ClientDefaultPrinter) |
| .field("BrokenTimeoutSettings", &self.BrokenTimeoutSettings) |
| .field("ReconnectSettings", &self.ReconnectSettings) |
| .field("ShadowingSettings", &self.ShadowingSettings) |
| .field("TerminalServerRemoteHomeDir", &self.TerminalServerRemoteHomeDir) |
| .field("InitialProgram", &self.InitialProgram) |
| .field("WorkDirectory", &self.WorkDirectory) |
| .field("TerminalServerProfilePath", &self.TerminalServerProfilePath) |
| .field("TerminalServerHomeDir", &self.TerminalServerHomeDir) |
| .field("TerminalServerHomeDirDrive", &self.TerminalServerHomeDirDrive) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTSUSERCONFIGW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTSUSERCONFIGW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTSUSERCONFIGW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTSUSERCONFIGW {} |
| impl ::core::default::Default for WTSUSERCONFIGW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_CACHE_STATS { |
| pub Specific: u32, |
| pub Data: WTS_CACHE_STATS_UN, |
| pub ProtocolType: u16, |
| pub Length: u16, |
| } |
| impl ::core::marker::Copy for WTS_CACHE_STATS {} |
| impl ::core::clone::Clone for WTS_CACHE_STATS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_CACHE_STATS { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_CACHE_STATS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_CACHE_STATS>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_CACHE_STATS {} |
| impl ::core::default::Default for WTS_CACHE_STATS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub union WTS_CACHE_STATS_UN { |
| pub ProtocolCache: [WTS_PROTOCOL_CACHE; 4], |
| pub TShareCacheStats: u32, |
| pub Reserved: [u32; 20], |
| } |
| impl ::core::marker::Copy for WTS_CACHE_STATS_UN {} |
| impl ::core::clone::Clone for WTS_CACHE_STATS_UN { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_CACHE_STATS_UN { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_CACHE_STATS_UN { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_CACHE_STATS_UN>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_CACHE_STATS_UN {} |
| impl ::core::default::Default for WTS_CACHE_STATS_UN { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_CLIENT_ADDRESS { |
| pub AddressFamily: u32, |
| pub Address: [u8; 20], |
| } |
| impl ::core::marker::Copy for WTS_CLIENT_ADDRESS {} |
| impl ::core::clone::Clone for WTS_CLIENT_ADDRESS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_CLIENT_ADDRESS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_CLIENT_ADDRESS").field("AddressFamily", &self.AddressFamily).field("Address", &self.Address).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_CLIENT_ADDRESS { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_CLIENT_ADDRESS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_CLIENT_ADDRESS>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_CLIENT_ADDRESS {} |
| impl ::core::default::Default for WTS_CLIENT_ADDRESS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTS_CLIENT_DATA { |
| pub fDisableCtrlAltDel: super::super::Foundation::BOOLEAN, |
| pub fDoubleClickDetect: super::super::Foundation::BOOLEAN, |
| pub fEnableWindowsKey: super::super::Foundation::BOOLEAN, |
| pub fHideTitleBar: super::super::Foundation::BOOLEAN, |
| pub fInheritAutoLogon: super::super::Foundation::BOOL, |
| pub fPromptForPassword: super::super::Foundation::BOOLEAN, |
| pub fUsingSavedCreds: super::super::Foundation::BOOLEAN, |
| pub Domain: [u16; 256], |
| pub UserName: [u16; 256], |
| pub Password: [u16; 256], |
| pub fPasswordIsScPin: super::super::Foundation::BOOLEAN, |
| pub fInheritInitialProgram: super::super::Foundation::BOOL, |
| pub WorkDirectory: [u16; 257], |
| pub InitialProgram: [u16; 257], |
| pub fMaximizeShell: super::super::Foundation::BOOLEAN, |
| pub EncryptionLevel: u8, |
| pub PerformanceFlags: u32, |
| pub ProtocolName: [u16; 9], |
| pub ProtocolType: u16, |
| pub fInheritColorDepth: super::super::Foundation::BOOL, |
| pub HRes: u16, |
| pub VRes: u16, |
| pub ColorDepth: u16, |
| pub DisplayDriverName: [u16; 9], |
| pub DisplayDeviceName: [u16; 20], |
| pub fMouse: super::super::Foundation::BOOLEAN, |
| pub KeyboardLayout: u32, |
| pub KeyboardType: u32, |
| pub KeyboardSubType: u32, |
| pub KeyboardFunctionKey: u32, |
| pub imeFileName: [u16; 33], |
| pub ActiveInputLocale: u32, |
| pub fNoAudioPlayback: super::super::Foundation::BOOLEAN, |
| pub fRemoteConsoleAudio: super::super::Foundation::BOOLEAN, |
| pub AudioDriverName: [u16; 9], |
| pub ClientTimeZone: WTS_TIME_ZONE_INFORMATION, |
| pub ClientName: [u16; 21], |
| pub SerialNumber: u32, |
| pub ClientAddressFamily: u32, |
| pub ClientAddress: [u16; 31], |
| pub ClientSockAddress: WTS_SOCKADDR, |
| pub ClientDirectory: [u16; 257], |
| pub ClientBuildNumber: u32, |
| pub ClientProductId: u16, |
| pub OutBufCountHost: u16, |
| pub OutBufCountClient: u16, |
| pub OutBufLength: u16, |
| pub ClientSessionId: u32, |
| pub ClientDigProductId: [u16; 33], |
| pub fDisableCpm: super::super::Foundation::BOOLEAN, |
| pub fDisableCdm: super::super::Foundation::BOOLEAN, |
| pub fDisableCcm: super::super::Foundation::BOOLEAN, |
| pub fDisableLPT: super::super::Foundation::BOOLEAN, |
| pub fDisableClip: super::super::Foundation::BOOLEAN, |
| pub fDisablePNP: super::super::Foundation::BOOLEAN, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTS_CLIENT_DATA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTS_CLIENT_DATA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTS_CLIENT_DATA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTS_CLIENT_DATA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_CLIENT_DATA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTS_CLIENT_DATA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTS_CLIENT_DATA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_CLIENT_DISPLAY { |
| pub HorizontalResolution: u32, |
| pub VerticalResolution: u32, |
| pub ColorDepth: u32, |
| } |
| impl ::core::marker::Copy for WTS_CLIENT_DISPLAY {} |
| impl ::core::clone::Clone for WTS_CLIENT_DISPLAY { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_CLIENT_DISPLAY { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_CLIENT_DISPLAY").field("HorizontalResolution", &self.HorizontalResolution).field("VerticalResolution", &self.VerticalResolution).field("ColorDepth", &self.ColorDepth).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_CLIENT_DISPLAY { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_CLIENT_DISPLAY { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_CLIENT_DISPLAY>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_CLIENT_DISPLAY {} |
| impl ::core::default::Default for WTS_CLIENT_DISPLAY { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_DISPLAY_IOCTL { |
| pub pDisplayIOCtlData: [u8; 256], |
| pub cbDisplayIOCtlData: u32, |
| } |
| impl ::core::marker::Copy for WTS_DISPLAY_IOCTL {} |
| impl ::core::clone::Clone for WTS_DISPLAY_IOCTL { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_DISPLAY_IOCTL { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_DISPLAY_IOCTL").field("pDisplayIOCtlData", &self.pDisplayIOCtlData).field("cbDisplayIOCtlData", &self.cbDisplayIOCtlData).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_DISPLAY_IOCTL { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_DISPLAY_IOCTL { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_DISPLAY_IOCTL>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_DISPLAY_IOCTL {} |
| impl ::core::default::Default for WTS_DISPLAY_IOCTL { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTS_LICENSE_CAPABILITIES { |
| pub KeyExchangeAlg: u32, |
| pub ProtocolVer: u32, |
| pub fAuthenticateServer: super::super::Foundation::BOOL, |
| pub CertType: WTS_CERT_TYPE, |
| pub cbClientName: u32, |
| pub rgbClientName: [u8; 42], |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTS_LICENSE_CAPABILITIES {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTS_LICENSE_CAPABILITIES { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTS_LICENSE_CAPABILITIES { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_LICENSE_CAPABILITIES").field("KeyExchangeAlg", &self.KeyExchangeAlg).field("ProtocolVer", &self.ProtocolVer).field("fAuthenticateServer", &self.fAuthenticateServer).field("CertType", &self.CertType).field("cbClientName", &self.cbClientName).field("rgbClientName", &self.rgbClientName).finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTS_LICENSE_CAPABILITIES { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTS_LICENSE_CAPABILITIES { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_LICENSE_CAPABILITIES>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTS_LICENSE_CAPABILITIES {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTS_LICENSE_CAPABILITIES { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTS_POLICY_DATA { |
| pub fDisableEncryption: super::super::Foundation::BOOLEAN, |
| pub fDisableAutoReconnect: super::super::Foundation::BOOLEAN, |
| pub ColorDepth: u32, |
| pub MinEncryptionLevel: u8, |
| pub fDisableCpm: super::super::Foundation::BOOLEAN, |
| pub fDisableCdm: super::super::Foundation::BOOLEAN, |
| pub fDisableCcm: super::super::Foundation::BOOLEAN, |
| pub fDisableLPT: super::super::Foundation::BOOLEAN, |
| pub fDisableClip: super::super::Foundation::BOOLEAN, |
| pub fDisablePNPRedir: super::super::Foundation::BOOLEAN, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTS_POLICY_DATA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTS_POLICY_DATA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTS_POLICY_DATA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_POLICY_DATA") |
| .field("fDisableEncryption", &self.fDisableEncryption) |
| .field("fDisableAutoReconnect", &self.fDisableAutoReconnect) |
| .field("ColorDepth", &self.ColorDepth) |
| .field("MinEncryptionLevel", &self.MinEncryptionLevel) |
| .field("fDisableCpm", &self.fDisableCpm) |
| .field("fDisableCdm", &self.fDisableCdm) |
| .field("fDisableCcm", &self.fDisableCcm) |
| .field("fDisableLPT", &self.fDisableLPT) |
| .field("fDisableClip", &self.fDisableClip) |
| .field("fDisablePNPRedir", &self.fDisablePNPRedir) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTS_POLICY_DATA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTS_POLICY_DATA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_POLICY_DATA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTS_POLICY_DATA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTS_POLICY_DATA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTS_PROCESS_INFOA { |
| pub SessionId: u32, |
| pub ProcessId: u32, |
| pub pProcessName: ::windows::core::PSTR, |
| pub pUserSid: super::super::Foundation::PSID, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTS_PROCESS_INFOA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTS_PROCESS_INFOA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTS_PROCESS_INFOA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_PROCESS_INFOA").field("SessionId", &self.SessionId).field("ProcessId", &self.ProcessId).field("pProcessName", &self.pProcessName).field("pUserSid", &self.pUserSid).finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTS_PROCESS_INFOA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTS_PROCESS_INFOA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROCESS_INFOA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTS_PROCESS_INFOA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTS_PROCESS_INFOA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTS_PROCESS_INFOW { |
| pub SessionId: u32, |
| pub ProcessId: u32, |
| pub pProcessName: ::windows::core::PWSTR, |
| pub pUserSid: super::super::Foundation::PSID, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTS_PROCESS_INFOW {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTS_PROCESS_INFOW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTS_PROCESS_INFOW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_PROCESS_INFOW").field("SessionId", &self.SessionId).field("ProcessId", &self.ProcessId).field("pProcessName", &self.pProcessName).field("pUserSid", &self.pUserSid).finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTS_PROCESS_INFOW { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTS_PROCESS_INFOW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROCESS_INFOW>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTS_PROCESS_INFOW {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTS_PROCESS_INFOW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTS_PROCESS_INFO_EXA { |
| pub SessionId: u32, |
| pub ProcessId: u32, |
| pub pProcessName: ::windows::core::PSTR, |
| pub pUserSid: super::super::Foundation::PSID, |
| pub NumberOfThreads: u32, |
| pub HandleCount: u32, |
| pub PagefileUsage: u32, |
| pub PeakPagefileUsage: u32, |
| pub WorkingSetSize: u32, |
| pub PeakWorkingSetSize: u32, |
| pub UserTime: i64, |
| pub KernelTime: i64, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTS_PROCESS_INFO_EXA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTS_PROCESS_INFO_EXA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTS_PROCESS_INFO_EXA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_PROCESS_INFO_EXA") |
| .field("SessionId", &self.SessionId) |
| .field("ProcessId", &self.ProcessId) |
| .field("pProcessName", &self.pProcessName) |
| .field("pUserSid", &self.pUserSid) |
| .field("NumberOfThreads", &self.NumberOfThreads) |
| .field("HandleCount", &self.HandleCount) |
| .field("PagefileUsage", &self.PagefileUsage) |
| .field("PeakPagefileUsage", &self.PeakPagefileUsage) |
| .field("WorkingSetSize", &self.WorkingSetSize) |
| .field("PeakWorkingSetSize", &self.PeakWorkingSetSize) |
| .field("UserTime", &self.UserTime) |
| .field("KernelTime", &self.KernelTime) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTS_PROCESS_INFO_EXA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTS_PROCESS_INFO_EXA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROCESS_INFO_EXA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTS_PROCESS_INFO_EXA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTS_PROCESS_INFO_EXA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTS_PROCESS_INFO_EXW { |
| pub SessionId: u32, |
| pub ProcessId: u32, |
| pub pProcessName: ::windows::core::PWSTR, |
| pub pUserSid: super::super::Foundation::PSID, |
| pub NumberOfThreads: u32, |
| pub HandleCount: u32, |
| pub PagefileUsage: u32, |
| pub PeakPagefileUsage: u32, |
| pub WorkingSetSize: u32, |
| pub PeakWorkingSetSize: u32, |
| pub UserTime: i64, |
| pub KernelTime: i64, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTS_PROCESS_INFO_EXW {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTS_PROCESS_INFO_EXW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTS_PROCESS_INFO_EXW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_PROCESS_INFO_EXW") |
| .field("SessionId", &self.SessionId) |
| .field("ProcessId", &self.ProcessId) |
| .field("pProcessName", &self.pProcessName) |
| .field("pUserSid", &self.pUserSid) |
| .field("NumberOfThreads", &self.NumberOfThreads) |
| .field("HandleCount", &self.HandleCount) |
| .field("PagefileUsage", &self.PagefileUsage) |
| .field("PeakPagefileUsage", &self.PeakPagefileUsage) |
| .field("WorkingSetSize", &self.WorkingSetSize) |
| .field("PeakWorkingSetSize", &self.PeakWorkingSetSize) |
| .field("UserTime", &self.UserTime) |
| .field("KernelTime", &self.KernelTime) |
| .finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTS_PROCESS_INFO_EXW { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTS_PROCESS_INFO_EXW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROCESS_INFO_EXW>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTS_PROCESS_INFO_EXW {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTS_PROCESS_INFO_EXW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_PROPERTY_VALUE { |
| pub Type: u16, |
| pub u: WTS_PROPERTY_VALUE_0, |
| } |
| impl ::core::marker::Copy for WTS_PROPERTY_VALUE {} |
| impl ::core::clone::Clone for WTS_PROPERTY_VALUE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_PROPERTY_VALUE { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_PROPERTY_VALUE { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROPERTY_VALUE>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_PROPERTY_VALUE {} |
| impl ::core::default::Default for WTS_PROPERTY_VALUE { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub union WTS_PROPERTY_VALUE_0 { |
| pub ulVal: u32, |
| pub strVal: WTS_PROPERTY_VALUE_0_1, |
| pub bVal: WTS_PROPERTY_VALUE_0_0, |
| pub guidVal: ::windows::core::GUID, |
| } |
| impl ::core::marker::Copy for WTS_PROPERTY_VALUE_0 {} |
| impl ::core::clone::Clone for WTS_PROPERTY_VALUE_0 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_PROPERTY_VALUE_0 { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_PROPERTY_VALUE_0 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROPERTY_VALUE_0>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_PROPERTY_VALUE_0 {} |
| impl ::core::default::Default for WTS_PROPERTY_VALUE_0 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_PROPERTY_VALUE_0_0 { |
| pub size: u32, |
| pub pbVal: ::windows::core::PSTR, |
| } |
| impl ::core::marker::Copy for WTS_PROPERTY_VALUE_0_0 {} |
| impl ::core::clone::Clone for WTS_PROPERTY_VALUE_0_0 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_PROPERTY_VALUE_0_0 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_PROPERTY_VALUE_0_0").field("size", &self.size).field("pbVal", &self.pbVal).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_PROPERTY_VALUE_0_0 { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_PROPERTY_VALUE_0_0 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROPERTY_VALUE_0_0>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_PROPERTY_VALUE_0_0 {} |
| impl ::core::default::Default for WTS_PROPERTY_VALUE_0_0 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_PROPERTY_VALUE_0_1 { |
| pub size: u32, |
| pub pstrVal: ::windows::core::PWSTR, |
| } |
| impl ::core::marker::Copy for WTS_PROPERTY_VALUE_0_1 {} |
| impl ::core::clone::Clone for WTS_PROPERTY_VALUE_0_1 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_PROPERTY_VALUE_0_1 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_PROPERTY_VALUE_0_1").field("size", &self.size).field("pstrVal", &self.pstrVal).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_PROPERTY_VALUE_0_1 { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_PROPERTY_VALUE_0_1 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROPERTY_VALUE_0_1>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_PROPERTY_VALUE_0_1 {} |
| impl ::core::default::Default for WTS_PROPERTY_VALUE_0_1 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_PROTOCOL_CACHE { |
| pub CacheReads: u32, |
| pub CacheHits: u32, |
| } |
| impl ::core::marker::Copy for WTS_PROTOCOL_CACHE {} |
| impl ::core::clone::Clone for WTS_PROTOCOL_CACHE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_PROTOCOL_CACHE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_PROTOCOL_CACHE").field("CacheReads", &self.CacheReads).field("CacheHits", &self.CacheHits).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_PROTOCOL_CACHE { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_PROTOCOL_CACHE { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROTOCOL_CACHE>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_PROTOCOL_CACHE {} |
| impl ::core::default::Default for WTS_PROTOCOL_CACHE { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_PROTOCOL_COUNTERS { |
| pub WdBytes: u32, |
| pub WdFrames: u32, |
| pub WaitForOutBuf: u32, |
| pub Frames: u32, |
| pub Bytes: u32, |
| pub CompressedBytes: u32, |
| pub CompressFlushes: u32, |
| pub Errors: u32, |
| pub Timeouts: u32, |
| pub AsyncFramingError: u32, |
| pub AsyncOverrunError: u32, |
| pub AsyncOverflowError: u32, |
| pub AsyncParityError: u32, |
| pub TdErrors: u32, |
| pub ProtocolType: u16, |
| pub Length: u16, |
| pub Specific: u16, |
| pub Reserved: [u32; 100], |
| } |
| impl ::core::marker::Copy for WTS_PROTOCOL_COUNTERS {} |
| impl ::core::clone::Clone for WTS_PROTOCOL_COUNTERS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_PROTOCOL_COUNTERS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_PROTOCOL_COUNTERS") |
| .field("WdBytes", &self.WdBytes) |
| .field("WdFrames", &self.WdFrames) |
| .field("WaitForOutBuf", &self.WaitForOutBuf) |
| .field("Frames", &self.Frames) |
| .field("Bytes", &self.Bytes) |
| .field("CompressedBytes", &self.CompressedBytes) |
| .field("CompressFlushes", &self.CompressFlushes) |
| .field("Errors", &self.Errors) |
| .field("Timeouts", &self.Timeouts) |
| .field("AsyncFramingError", &self.AsyncFramingError) |
| .field("AsyncOverrunError", &self.AsyncOverrunError) |
| .field("AsyncOverflowError", &self.AsyncOverflowError) |
| .field("AsyncParityError", &self.AsyncParityError) |
| .field("TdErrors", &self.TdErrors) |
| .field("ProtocolType", &self.ProtocolType) |
| .field("Length", &self.Length) |
| .field("Specific", &self.Specific) |
| .field("Reserved", &self.Reserved) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_PROTOCOL_COUNTERS { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_PROTOCOL_COUNTERS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROTOCOL_COUNTERS>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_PROTOCOL_COUNTERS {} |
| impl ::core::default::Default for WTS_PROTOCOL_COUNTERS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_PROTOCOL_STATUS { |
| pub Output: WTS_PROTOCOL_COUNTERS, |
| pub Input: WTS_PROTOCOL_COUNTERS, |
| pub Cache: WTS_CACHE_STATS, |
| pub AsyncSignal: u32, |
| pub AsyncSignalMask: u32, |
| pub Counters: [i64; 100], |
| } |
| impl ::core::marker::Copy for WTS_PROTOCOL_STATUS {} |
| impl ::core::clone::Clone for WTS_PROTOCOL_STATUS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_PROTOCOL_STATUS { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_PROTOCOL_STATUS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_PROTOCOL_STATUS>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_PROTOCOL_STATUS {} |
| impl ::core::default::Default for WTS_PROTOCOL_STATUS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SERVER_INFOA { |
| pub pServerName: ::windows::core::PSTR, |
| } |
| impl ::core::marker::Copy for WTS_SERVER_INFOA {} |
| impl ::core::clone::Clone for WTS_SERVER_INFOA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SERVER_INFOA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SERVER_INFOA").field("pServerName", &self.pServerName).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SERVER_INFOA { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SERVER_INFOA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SERVER_INFOA>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SERVER_INFOA {} |
| impl ::core::default::Default for WTS_SERVER_INFOA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SERVER_INFOW { |
| pub pServerName: ::windows::core::PWSTR, |
| } |
| impl ::core::marker::Copy for WTS_SERVER_INFOW {} |
| impl ::core::clone::Clone for WTS_SERVER_INFOW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SERVER_INFOW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SERVER_INFOW").field("pServerName", &self.pServerName).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SERVER_INFOW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SERVER_INFOW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SERVER_INFOW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SERVER_INFOW {} |
| impl ::core::default::Default for WTS_SERVER_INFOW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SERVICE_STATE { |
| pub RcmServiceState: WTS_RCM_SERVICE_STATE, |
| pub RcmDrainState: WTS_RCM_DRAIN_STATE, |
| } |
| impl ::core::marker::Copy for WTS_SERVICE_STATE {} |
| impl ::core::clone::Clone for WTS_SERVICE_STATE { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SERVICE_STATE { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SERVICE_STATE").field("RcmServiceState", &self.RcmServiceState).field("RcmDrainState", &self.RcmDrainState).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SERVICE_STATE { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SERVICE_STATE { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SERVICE_STATE>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SERVICE_STATE {} |
| impl ::core::default::Default for WTS_SERVICE_STATE { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SESSION_ADDRESS { |
| pub AddressFamily: u32, |
| pub Address: [u8; 20], |
| } |
| impl ::core::marker::Copy for WTS_SESSION_ADDRESS {} |
| impl ::core::clone::Clone for WTS_SESSION_ADDRESS { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SESSION_ADDRESS { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SESSION_ADDRESS").field("AddressFamily", &self.AddressFamily).field("Address", &self.Address).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SESSION_ADDRESS { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SESSION_ADDRESS { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SESSION_ADDRESS>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SESSION_ADDRESS {} |
| impl ::core::default::Default for WTS_SESSION_ADDRESS { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SESSION_ID { |
| pub SessionUniqueGuid: ::windows::core::GUID, |
| pub SessionId: u32, |
| } |
| impl ::core::marker::Copy for WTS_SESSION_ID {} |
| impl ::core::clone::Clone for WTS_SESSION_ID { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SESSION_ID { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SESSION_ID").field("SessionUniqueGuid", &self.SessionUniqueGuid).field("SessionId", &self.SessionId).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SESSION_ID { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SESSION_ID { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SESSION_ID>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SESSION_ID {} |
| impl ::core::default::Default for WTS_SESSION_ID { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SESSION_INFOA { |
| pub SessionId: u32, |
| pub pWinStationName: ::windows::core::PSTR, |
| pub State: WTS_CONNECTSTATE_CLASS, |
| } |
| impl ::core::marker::Copy for WTS_SESSION_INFOA {} |
| impl ::core::clone::Clone for WTS_SESSION_INFOA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SESSION_INFOA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SESSION_INFOA").field("SessionId", &self.SessionId).field("pWinStationName", &self.pWinStationName).field("State", &self.State).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SESSION_INFOA { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SESSION_INFOA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SESSION_INFOA>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SESSION_INFOA {} |
| impl ::core::default::Default for WTS_SESSION_INFOA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SESSION_INFOW { |
| pub SessionId: u32, |
| pub pWinStationName: ::windows::core::PWSTR, |
| pub State: WTS_CONNECTSTATE_CLASS, |
| } |
| impl ::core::marker::Copy for WTS_SESSION_INFOW {} |
| impl ::core::clone::Clone for WTS_SESSION_INFOW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SESSION_INFOW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SESSION_INFOW").field("SessionId", &self.SessionId).field("pWinStationName", &self.pWinStationName).field("State", &self.State).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SESSION_INFOW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SESSION_INFOW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SESSION_INFOW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SESSION_INFOW {} |
| impl ::core::default::Default for WTS_SESSION_INFOW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SESSION_INFO_1A { |
| pub ExecEnvId: u32, |
| pub State: WTS_CONNECTSTATE_CLASS, |
| pub SessionId: u32, |
| pub pSessionName: ::windows::core::PSTR, |
| pub pHostName: ::windows::core::PSTR, |
| pub pUserName: ::windows::core::PSTR, |
| pub pDomainName: ::windows::core::PSTR, |
| pub pFarmName: ::windows::core::PSTR, |
| } |
| impl ::core::marker::Copy for WTS_SESSION_INFO_1A {} |
| impl ::core::clone::Clone for WTS_SESSION_INFO_1A { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SESSION_INFO_1A { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SESSION_INFO_1A").field("ExecEnvId", &self.ExecEnvId).field("State", &self.State).field("SessionId", &self.SessionId).field("pSessionName", &self.pSessionName).field("pHostName", &self.pHostName).field("pUserName", &self.pUserName).field("pDomainName", &self.pDomainName).field("pFarmName", &self.pFarmName).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SESSION_INFO_1A { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SESSION_INFO_1A { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SESSION_INFO_1A>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SESSION_INFO_1A {} |
| impl ::core::default::Default for WTS_SESSION_INFO_1A { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SESSION_INFO_1W { |
| pub ExecEnvId: u32, |
| pub State: WTS_CONNECTSTATE_CLASS, |
| pub SessionId: u32, |
| pub pSessionName: ::windows::core::PWSTR, |
| pub pHostName: ::windows::core::PWSTR, |
| pub pUserName: ::windows::core::PWSTR, |
| pub pDomainName: ::windows::core::PWSTR, |
| pub pFarmName: ::windows::core::PWSTR, |
| } |
| impl ::core::marker::Copy for WTS_SESSION_INFO_1W {} |
| impl ::core::clone::Clone for WTS_SESSION_INFO_1W { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SESSION_INFO_1W { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SESSION_INFO_1W").field("ExecEnvId", &self.ExecEnvId).field("State", &self.State).field("SessionId", &self.SessionId).field("pSessionName", &self.pSessionName).field("pHostName", &self.pHostName).field("pUserName", &self.pUserName).field("pDomainName", &self.pDomainName).field("pFarmName", &self.pFarmName).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SESSION_INFO_1W { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SESSION_INFO_1W { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SESSION_INFO_1W>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SESSION_INFO_1W {} |
| impl ::core::default::Default for WTS_SESSION_INFO_1W { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SMALL_RECT { |
| pub Left: i16, |
| pub Top: i16, |
| pub Right: i16, |
| pub Bottom: i16, |
| } |
| impl ::core::marker::Copy for WTS_SMALL_RECT {} |
| impl ::core::clone::Clone for WTS_SMALL_RECT { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SMALL_RECT { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SMALL_RECT").field("Left", &self.Left).field("Top", &self.Top).field("Right", &self.Right).field("Bottom", &self.Bottom).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SMALL_RECT { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SMALL_RECT { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SMALL_RECT>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SMALL_RECT {} |
| impl ::core::default::Default for WTS_SMALL_RECT { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SOCKADDR { |
| pub sin_family: u16, |
| pub u: WTS_SOCKADDR_0, |
| } |
| impl ::core::marker::Copy for WTS_SOCKADDR {} |
| impl ::core::clone::Clone for WTS_SOCKADDR { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SOCKADDR { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SOCKADDR { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SOCKADDR>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SOCKADDR {} |
| impl ::core::default::Default for WTS_SOCKADDR { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub union WTS_SOCKADDR_0 { |
| pub ipv4: WTS_SOCKADDR_0_0, |
| pub ipv6: WTS_SOCKADDR_0_1, |
| } |
| impl ::core::marker::Copy for WTS_SOCKADDR_0 {} |
| impl ::core::clone::Clone for WTS_SOCKADDR_0 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SOCKADDR_0 { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SOCKADDR_0 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SOCKADDR_0>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SOCKADDR_0 {} |
| impl ::core::default::Default for WTS_SOCKADDR_0 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SOCKADDR_0_0 { |
| pub sin_port: u16, |
| pub IN_ADDR: u32, |
| pub sin_zero: [u8; 8], |
| } |
| impl ::core::marker::Copy for WTS_SOCKADDR_0_0 {} |
| impl ::core::clone::Clone for WTS_SOCKADDR_0_0 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SOCKADDR_0_0 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SOCKADDR_0_0").field("sin_port", &self.sin_port).field("IN_ADDR", &self.IN_ADDR).field("sin_zero", &self.sin_zero).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SOCKADDR_0_0 { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SOCKADDR_0_0 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SOCKADDR_0_0>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SOCKADDR_0_0 {} |
| impl ::core::default::Default for WTS_SOCKADDR_0_0 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SOCKADDR_0_1 { |
| pub sin6_port: u16, |
| pub sin6_flowinfo: u32, |
| pub sin6_addr: [u16; 8], |
| pub sin6_scope_id: u32, |
| } |
| impl ::core::marker::Copy for WTS_SOCKADDR_0_1 {} |
| impl ::core::clone::Clone for WTS_SOCKADDR_0_1 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SOCKADDR_0_1 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SOCKADDR_0_1").field("sin6_port", &self.sin6_port).field("sin6_flowinfo", &self.sin6_flowinfo).field("sin6_addr", &self.sin6_addr).field("sin6_scope_id", &self.sin6_scope_id).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SOCKADDR_0_1 { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SOCKADDR_0_1 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SOCKADDR_0_1>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SOCKADDR_0_1 {} |
| impl ::core::default::Default for WTS_SOCKADDR_0_1 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_SYSTEMTIME { |
| pub wYear: u16, |
| pub wMonth: u16, |
| pub wDayOfWeek: u16, |
| pub wDay: u16, |
| pub wHour: u16, |
| pub wMinute: u16, |
| pub wSecond: u16, |
| pub wMilliseconds: u16, |
| } |
| impl ::core::marker::Copy for WTS_SYSTEMTIME {} |
| impl ::core::clone::Clone for WTS_SYSTEMTIME { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_SYSTEMTIME { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_SYSTEMTIME").field("wYear", &self.wYear).field("wMonth", &self.wMonth).field("wDayOfWeek", &self.wDayOfWeek).field("wDay", &self.wDay).field("wHour", &self.wHour).field("wMinute", &self.wMinute).field("wSecond", &self.wSecond).field("wMilliseconds", &self.wMilliseconds).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_SYSTEMTIME { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_SYSTEMTIME { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_SYSTEMTIME>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_SYSTEMTIME {} |
| impl ::core::default::Default for WTS_SYSTEMTIME { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_TIME_ZONE_INFORMATION { |
| pub Bias: i32, |
| pub StandardName: [u16; 32], |
| pub StandardDate: WTS_SYSTEMTIME, |
| pub StandardBias: i32, |
| pub DaylightName: [u16; 32], |
| pub DaylightDate: WTS_SYSTEMTIME, |
| pub DaylightBias: i32, |
| } |
| impl ::core::marker::Copy for WTS_TIME_ZONE_INFORMATION {} |
| impl ::core::clone::Clone for WTS_TIME_ZONE_INFORMATION { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_TIME_ZONE_INFORMATION { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_TIME_ZONE_INFORMATION").field("Bias", &self.Bias).field("StandardName", &self.StandardName).field("StandardDate", &self.StandardDate).field("StandardBias", &self.StandardBias).field("DaylightName", &self.DaylightName).field("DaylightDate", &self.DaylightDate).field("DaylightBias", &self.DaylightBias).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_TIME_ZONE_INFORMATION { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_TIME_ZONE_INFORMATION { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_TIME_ZONE_INFORMATION>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_TIME_ZONE_INFORMATION {} |
| impl ::core::default::Default for WTS_TIME_ZONE_INFORMATION { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_USER_CREDENTIAL { |
| pub UserName: [u16; 256], |
| pub Password: [u16; 256], |
| pub Domain: [u16; 256], |
| } |
| impl ::core::marker::Copy for WTS_USER_CREDENTIAL {} |
| impl ::core::clone::Clone for WTS_USER_CREDENTIAL { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_USER_CREDENTIAL { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_USER_CREDENTIAL").field("UserName", &self.UserName).field("Password", &self.Password).field("Domain", &self.Domain).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_USER_CREDENTIAL { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_USER_CREDENTIAL { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_USER_CREDENTIAL>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_USER_CREDENTIAL {} |
| impl ::core::default::Default for WTS_USER_CREDENTIAL { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_USER_DATA { |
| pub WorkDirectory: [u16; 257], |
| pub InitialProgram: [u16; 257], |
| pub UserTimeZone: WTS_TIME_ZONE_INFORMATION, |
| } |
| impl ::core::marker::Copy for WTS_USER_DATA {} |
| impl ::core::clone::Clone for WTS_USER_DATA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_USER_DATA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_USER_DATA").field("WorkDirectory", &self.WorkDirectory).field("InitialProgram", &self.InitialProgram).field("UserTimeZone", &self.UserTimeZone).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_USER_DATA { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_USER_DATA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_USER_DATA>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_USER_DATA {} |
| impl ::core::default::Default for WTS_USER_DATA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub struct WTS_VALIDATION_INFORMATIONA { |
| pub ProductInfo: PRODUCT_INFOA, |
| pub License: [u8; 16384], |
| pub LicenseLength: u32, |
| pub HardwareID: [u8; 20], |
| pub HardwareIDLength: u32, |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::marker::Copy for WTS_VALIDATION_INFORMATIONA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::clone::Clone for WTS_VALIDATION_INFORMATIONA { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::fmt::Debug for WTS_VALIDATION_INFORMATIONA { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_VALIDATION_INFORMATIONA").field("ProductInfo", &self.ProductInfo).field("License", &self.License).field("LicenseLength", &self.LicenseLength).field("HardwareID", &self.HardwareID).field("HardwareIDLength", &self.HardwareIDLength).finish() |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| unsafe impl ::windows::core::Abi for WTS_VALIDATION_INFORMATIONA { |
| type Abi = Self; |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::PartialEq for WTS_VALIDATION_INFORMATIONA { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_VALIDATION_INFORMATIONA>()) == 0 } |
| } |
| } |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::cmp::Eq for WTS_VALIDATION_INFORMATIONA {} |
| #[cfg(feature = "Win32_Foundation")] |
| impl ::core::default::Default for WTS_VALIDATION_INFORMATIONA { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct WTS_VALIDATION_INFORMATIONW { |
| pub ProductInfo: PRODUCT_INFOW, |
| pub License: [u8; 16384], |
| pub LicenseLength: u32, |
| pub HardwareID: [u8; 20], |
| pub HardwareIDLength: u32, |
| } |
| impl ::core::marker::Copy for WTS_VALIDATION_INFORMATIONW {} |
| impl ::core::clone::Clone for WTS_VALIDATION_INFORMATIONW { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for WTS_VALIDATION_INFORMATIONW { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("WTS_VALIDATION_INFORMATIONW").field("ProductInfo", &self.ProductInfo).field("License", &self.License).field("LicenseLength", &self.LicenseLength).field("HardwareID", &self.HardwareID).field("HardwareIDLength", &self.HardwareIDLength).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for WTS_VALIDATION_INFORMATIONW { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for WTS_VALIDATION_INFORMATIONW { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<WTS_VALIDATION_INFORMATIONW>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for WTS_VALIDATION_INFORMATIONW {} |
| impl ::core::default::Default for WTS_VALIDATION_INFORMATIONW { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct pluginResource { |
| pub alias: [u16; 256], |
| pub name: [u16; 256], |
| pub resourceFileContents: ::windows::core::PWSTR, |
| pub fileExtension: [u16; 256], |
| pub resourcePluginType: [u16; 256], |
| pub isDiscoverable: u8, |
| pub resourceType: i32, |
| pub pceIconSize: u32, |
| pub iconContents: *mut u8, |
| pub pcePluginBlobSize: u32, |
| pub blobContents: *mut u8, |
| } |
| impl ::core::marker::Copy for pluginResource {} |
| impl ::core::clone::Clone for pluginResource { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for pluginResource { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("pluginResource") |
| .field("alias", &self.alias) |
| .field("name", &self.name) |
| .field("resourceFileContents", &self.resourceFileContents) |
| .field("fileExtension", &self.fileExtension) |
| .field("resourcePluginType", &self.resourcePluginType) |
| .field("isDiscoverable", &self.isDiscoverable) |
| .field("resourceType", &self.resourceType) |
| .field("pceIconSize", &self.pceIconSize) |
| .field("iconContents", &self.iconContents) |
| .field("pcePluginBlobSize", &self.pcePluginBlobSize) |
| .field("blobContents", &self.blobContents) |
| .finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for pluginResource { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for pluginResource { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<pluginResource>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for pluginResource {} |
| impl ::core::default::Default for pluginResource { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct pluginResource2 { |
| pub resourceV1: pluginResource, |
| pub pceFileAssocListSize: u32, |
| pub fileAssocList: *mut pluginResource2FileAssociation, |
| pub securityDescriptor: ::windows::core::PWSTR, |
| pub pceFolderListSize: u32, |
| pub folderList: *mut *mut u16, |
| } |
| impl ::core::marker::Copy for pluginResource2 {} |
| impl ::core::clone::Clone for pluginResource2 { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for pluginResource2 { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("pluginResource2").field("resourceV1", &self.resourceV1).field("pceFileAssocListSize", &self.pceFileAssocListSize).field("fileAssocList", &self.fileAssocList).field("securityDescriptor", &self.securityDescriptor).field("pceFolderListSize", &self.pceFolderListSize).field("folderList", &self.folderList).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for pluginResource2 { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for pluginResource2 { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<pluginResource2>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for pluginResource2 {} |
| impl ::core::default::Default for pluginResource2 { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[repr(C)] |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub struct pluginResource2FileAssociation { |
| pub extName: [u16; 256], |
| pub primaryHandler: u8, |
| pub pceIconSize: u32, |
| pub iconContents: *mut u8, |
| } |
| impl ::core::marker::Copy for pluginResource2FileAssociation {} |
| impl ::core::clone::Clone for pluginResource2FileAssociation { |
| fn clone(&self) -> Self { |
| *self |
| } |
| } |
| impl ::core::fmt::Debug for pluginResource2FileAssociation { |
| fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { |
| f.debug_struct("pluginResource2FileAssociation").field("extName", &self.extName).field("primaryHandler", &self.primaryHandler).field("pceIconSize", &self.pceIconSize).field("iconContents", &self.iconContents).finish() |
| } |
| } |
| unsafe impl ::windows::core::Abi for pluginResource2FileAssociation { |
| type Abi = Self; |
| } |
| impl ::core::cmp::PartialEq for pluginResource2FileAssociation { |
| fn eq(&self, other: &Self) -> bool { |
| unsafe { ::windows::core::memcmp(self as *const _ as _, other as *const _ as _, core::mem::size_of::<pluginResource2FileAssociation>()) == 0 } |
| } |
| } |
| impl ::core::cmp::Eq for pluginResource2FileAssociation {} |
| impl ::core::default::Default for pluginResource2FileAssociation { |
| fn default() -> Self { |
| unsafe { ::core::mem::zeroed() } |
| } |
| } |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub type PCHANNEL_INIT_EVENT_FN = ::core::option::Option<unsafe extern "system" fn(pinithandle: *mut ::core::ffi::c_void, event: u32, pdata: *mut ::core::ffi::c_void, datalength: u32)>; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub type PCHANNEL_OPEN_EVENT_FN = ::core::option::Option<unsafe extern "system" fn(openhandle: u32, event: u32, pdata: *mut ::core::ffi::c_void, datalength: u32, totallength: u32, dataflags: u32)>; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub type PVIRTUALCHANNELCLOSE = ::core::option::Option<unsafe extern "system" fn(openhandle: u32) -> u32>; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub type PVIRTUALCHANNELENTRY = ::core::option::Option<unsafe extern "system" fn(pentrypoints: *mut CHANNEL_ENTRY_POINTS) -> super::super::Foundation::BOOL>; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`, `\"Win32_Foundation\"`*"] |
| #[cfg(feature = "Win32_Foundation")] |
| pub type PVIRTUALCHANNELINIT = ::core::option::Option<unsafe extern "system" fn(ppinithandle: *mut *mut ::core::ffi::c_void, pchannel: *mut CHANNEL_DEF, channelcount: i32, versionrequested: u32, pchanneliniteventproc: PCHANNEL_INIT_EVENT_FN) -> u32>; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub type PVIRTUALCHANNELOPEN = ::core::option::Option<unsafe extern "system" fn(pinithandle: *mut ::core::ffi::c_void, popenhandle: *mut u32, pchannelname: ::windows::core::PCSTR, pchannelopeneventproc: PCHANNEL_OPEN_EVENT_FN) -> u32>; |
| #[doc = "*Required features: `\"Win32_System_RemoteDesktop\"`*"] |
| pub type PVIRTUALCHANNELWRITE = ::core::option::Option<unsafe extern "system" fn(openhandle: u32, pdata: *mut ::core::ffi::c_void, datalength: u32, puserdata: *mut ::core::ffi::c_void) -> u32>; |
| #[cfg(feature = "implement")] |
| ::core::include!("impl.rs"); |