[−][src]Struct openvr_sys::VR_IVRApplications_FnTable
Fields
AddApplicationManifest: Option<unsafe extern "C" fn(pchApplicationManifestFullPath: *mut c_char, bTemporary: bool) -> EVRApplicationError>RemoveApplicationManifest: Option<unsafe extern "C" fn(pchApplicationManifestFullPath: *mut c_char) -> EVRApplicationError>IsApplicationInstalled: Option<unsafe extern "C" fn(pchAppKey: *mut c_char) -> bool>GetApplicationCount: Option<unsafe extern "C" fn() -> u32>GetApplicationKeyByIndex: Option<unsafe extern "C" fn(unApplicationIndex: u32, pchAppKeyBuffer: *mut c_char, unAppKeyBufferLen: u32) -> EVRApplicationError>GetApplicationKeyByProcessId: Option<unsafe extern "C" fn(unProcessId: u32, pchAppKeyBuffer: *mut c_char, unAppKeyBufferLen: u32) -> EVRApplicationError>LaunchApplication: Option<unsafe extern "C" fn(pchAppKey: *mut c_char) -> EVRApplicationError>LaunchTemplateApplication: Option<unsafe extern "C" fn(pchTemplateAppKey: *mut c_char, pchNewAppKey: *mut c_char, pKeys: *mut AppOverrideKeys_t, unKeys: u32) -> EVRApplicationError>LaunchApplicationFromMimeType: Option<unsafe extern "C" fn(pchMimeType: *mut c_char, pchArgs: *mut c_char) -> EVRApplicationError>LaunchDashboardOverlay: Option<unsafe extern "C" fn(pchAppKey: *mut c_char) -> EVRApplicationError>CancelApplicationLaunch: Option<unsafe extern "C" fn(pchAppKey: *mut c_char) -> bool>IdentifyApplication: Option<unsafe extern "C" fn(unProcessId: u32, pchAppKey: *mut c_char) -> EVRApplicationError>GetApplicationProcessId: Option<unsafe extern "C" fn(pchAppKey: *mut c_char) -> u32>GetApplicationsErrorNameFromEnum: Option<unsafe extern "C" fn(error: EVRApplicationError) -> *mut c_char>GetApplicationPropertyString: Option<unsafe extern "C" fn(pchAppKey: *mut c_char, eProperty: EVRApplicationProperty, pchPropertyValueBuffer: *mut c_char, unPropertyValueBufferLen: u32, peError: *mut EVRApplicationError) -> u32>GetApplicationPropertyBool: Option<unsafe extern "C" fn(pchAppKey: *mut c_char, eProperty: EVRApplicationProperty, peError: *mut EVRApplicationError) -> bool>GetApplicationPropertyUint64: Option<unsafe extern "C" fn(pchAppKey: *mut c_char, eProperty: EVRApplicationProperty, peError: *mut EVRApplicationError) -> u64>SetApplicationAutoLaunch: Option<unsafe extern "C" fn(pchAppKey: *mut c_char, bAutoLaunch: bool) -> EVRApplicationError>GetApplicationAutoLaunch: Option<unsafe extern "C" fn(pchAppKey: *mut c_char) -> bool>SetDefaultApplicationForMimeType: Option<unsafe extern "C" fn(pchAppKey: *mut c_char, pchMimeType: *mut c_char) -> EVRApplicationError>GetDefaultApplicationForMimeType: Option<unsafe extern "C" fn(pchMimeType: *mut c_char, pchAppKeyBuffer: *mut c_char, unAppKeyBufferLen: u32) -> bool>GetApplicationSupportedMimeTypes: Option<unsafe extern "C" fn(pchAppKey: *mut c_char, pchMimeTypesBuffer: *mut c_char, unMimeTypesBuffer: u32) -> bool>GetApplicationsThatSupportMimeType: Option<unsafe extern "C" fn(pchMimeType: *mut c_char, pchAppKeysThatSupportBuffer: *mut c_char, unAppKeysThatSupportBuffer: u32) -> u32>GetApplicationLaunchArguments: Option<unsafe extern "C" fn(unHandle: u32, pchArgs: *mut c_char, unArgs: u32) -> u32>GetStartingApplication: Option<unsafe extern "C" fn(pchAppKeyBuffer: *mut c_char, unAppKeyBufferLen: u32) -> EVRApplicationError>GetTransitionState: Option<unsafe extern "C" fn() -> EVRApplicationTransitionState>PerformApplicationPrelaunchCheck: Option<unsafe extern "C" fn(pchAppKey: *mut c_char) -> EVRApplicationError>GetApplicationsTransitionStateNameFromEnum: Option<unsafe extern "C" fn(state: EVRApplicationTransitionState) -> *mut c_char>IsQuitUserPromptRequested: Option<unsafe extern "C" fn() -> bool>LaunchInternalProcess: Option<unsafe extern "C" fn(pchBinaryPath: *mut c_char, pchArguments: *mut c_char, pchWorkingDirectory: *mut c_char) -> EVRApplicationError>GetCurrentSceneProcessId: Option<unsafe extern "C" fn() -> u32>Trait Implementations
impl Clone for VR_IVRApplications_FnTable[src]
fn clone(&self) -> VR_IVRApplications_FnTable[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for VR_IVRApplications_FnTable[src]
impl Debug for VR_IVRApplications_FnTable[src]
Auto Trait Implementations
impl RefUnwindSafe for VR_IVRApplications_FnTable
impl Send for VR_IVRApplications_FnTable
impl Sync for VR_IVRApplications_FnTable
impl Unpin for VR_IVRApplications_FnTable
impl UnwindSafe for VR_IVRApplications_FnTable
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,