[][src]Struct winapi::um::shobjidl_core::IShellLinkA

#[repr(C)]pub struct IShellLinkA {
    pub lpVtbl: *const IShellLinkAVtbl,
}

Fields

lpVtbl: *const IShellLinkAVtbl

Implementations

impl IShellLinkA[src]

pub unsafe fn GetPath(
    &self,
    pszFile: LPSTR,
    cch: c_int,
    pfd: *mut WIN32_FIND_DATAA,
    fFlags: DWORD
) -> HRESULT
[src]

pub unsafe fn GetIDList(&self, ppidl: *mut PIDLIST_ABSOLUTE) -> HRESULT[src]

pub unsafe fn SetIDList(&self, pidl: PCIDLIST_ABSOLUTE) -> HRESULT[src]

pub unsafe fn GetDescription(&self, pszName: LPSTR, cch: c_int) -> HRESULT[src]

pub unsafe fn SetDescription(&self, pszName: LPCSTR) -> HRESULT[src]

pub unsafe fn GetWorkingDirectory(&self, pszDir: LPSTR, cch: c_int) -> HRESULT[src]

pub unsafe fn SetWorkingDirectory(&self, pszDir: LPCSTR) -> HRESULT[src]

pub unsafe fn GetArguments(&self, pszArgs: LPSTR, cch: c_int) -> HRESULT[src]

pub unsafe fn SetArguments(&self, pszArgs: LPCSTR) -> HRESULT[src]

pub unsafe fn GetHotkey(&self, pwHotkey: *mut WORD) -> HRESULT[src]

pub unsafe fn SetHotkey(&self, wHotkey: WORD) -> HRESULT[src]

pub unsafe fn GetShowCmd(&self, piShowCmd: *mut c_int) -> HRESULT[src]

pub unsafe fn SetShowCmd(&self, iShowCmd: c_int) -> HRESULT[src]

pub unsafe fn GetIconLocation(
    &self,
    pszIconPath: LPSTR,
    cch: c_int,
    piIcon: *mut c_int
) -> HRESULT
[src]

pub unsafe fn SetIconLocation(
    &self,
    pszIconPath: LPCSTR,
    iIcon: c_int
) -> HRESULT
[src]

pub unsafe fn SetRelativePath(
    &self,
    pszPathRel: LPCSTR,
    dwReserved: DWORD
) -> HRESULT
[src]

pub unsafe fn Resolve(&self, hwnd: HWND, fFlags: DWORD) -> HRESULT[src]

pub unsafe fn SetPath(&self, pszFile: LPCSTR) -> HRESULT[src]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Deref for IShellLinkA[src]

type Target = IUnknown

The resulting type after dereferencing.

impl Interface for IShellLinkA[src]

Auto Trait Implementations

impl !Send for IShellLinkA

impl !Sync for IShellLinkA

impl Unpin for IShellLinkA

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.