[][src]Struct CCODE::IStorageVtbl

#[repr(C)]pub struct IStorageVtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IStorage, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IStorage) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IStorage) -> ULONG>,
    pub CreateStream: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, grfMode: DWORD, reserved1: DWORD, reserved2: DWORD, ppstm: *mut *mut IStream) -> HRESULT>,
    pub OpenStream: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, reserved1: *mut c_void, grfMode: DWORD, reserved2: DWORD, ppstm: *mut *mut IStream) -> HRESULT>,
    pub CreateStorage: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, grfMode: DWORD, reserved1: DWORD, reserved2: DWORD, ppstg: *mut *mut IStorage) -> HRESULT>,
    pub OpenStorage: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, pstgPriority: *mut IStorage, grfMode: DWORD, snbExclude: SNB, reserved: DWORD, ppstg: *mut *mut IStorage) -> HRESULT>,
    pub CopyTo: Option<unsafe extern "C" fn(This: *mut IStorage, ciidExclude: DWORD, rgiidExclude: *const IID, snbExclude: SNB, pstgDest: *mut IStorage) -> HRESULT>,
    pub MoveElementTo: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, pstgDest: *mut IStorage, pwcsNewName: *const OLECHAR, grfFlags: DWORD) -> HRESULT>,
    pub Commit: Option<unsafe extern "C" fn(This: *mut IStorage, grfCommitFlags: DWORD) -> HRESULT>,
    pub Revert: Option<unsafe extern "C" fn(This: *mut IStorage) -> HRESULT>,
    pub EnumElements: Option<unsafe extern "C" fn(This: *mut IStorage, reserved1: DWORD, reserved2: *mut c_void, reserved3: DWORD, ppenum: *mut *mut IEnumSTATSTG) -> HRESULT>,
    pub DestroyElement: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR) -> HRESULT>,
    pub RenameElement: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsOldName: *const OLECHAR, pwcsNewName: *const OLECHAR) -> HRESULT>,
    pub SetElementTimes: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, pctime: *const FILETIME, patime: *const FILETIME, pmtime: *const FILETIME) -> HRESULT>,
    pub SetClass: Option<unsafe extern "C" fn(This: *mut IStorage, clsid: *const IID) -> HRESULT>,
    pub SetStateBits: Option<unsafe extern "C" fn(This: *mut IStorage, grfStateBits: DWORD, grfMask: DWORD) -> HRESULT>,
    pub Stat: Option<unsafe extern "C" fn(This: *mut IStorage, pstatstg: *mut STATSTG, grfStatFlag: DWORD) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IStorage, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IStorage) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IStorage) -> ULONG>CreateStream: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, grfMode: DWORD, reserved1: DWORD, reserved2: DWORD, ppstm: *mut *mut IStream) -> HRESULT>OpenStream: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, reserved1: *mut c_void, grfMode: DWORD, reserved2: DWORD, ppstm: *mut *mut IStream) -> HRESULT>CreateStorage: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, grfMode: DWORD, reserved1: DWORD, reserved2: DWORD, ppstg: *mut *mut IStorage) -> HRESULT>OpenStorage: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, pstgPriority: *mut IStorage, grfMode: DWORD, snbExclude: SNB, reserved: DWORD, ppstg: *mut *mut IStorage) -> HRESULT>CopyTo: Option<unsafe extern "C" fn(This: *mut IStorage, ciidExclude: DWORD, rgiidExclude: *const IID, snbExclude: SNB, pstgDest: *mut IStorage) -> HRESULT>MoveElementTo: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, pstgDest: *mut IStorage, pwcsNewName: *const OLECHAR, grfFlags: DWORD) -> HRESULT>Commit: Option<unsafe extern "C" fn(This: *mut IStorage, grfCommitFlags: DWORD) -> HRESULT>Revert: Option<unsafe extern "C" fn(This: *mut IStorage) -> HRESULT>EnumElements: Option<unsafe extern "C" fn(This: *mut IStorage, reserved1: DWORD, reserved2: *mut c_void, reserved3: DWORD, ppenum: *mut *mut IEnumSTATSTG) -> HRESULT>DestroyElement: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR) -> HRESULT>RenameElement: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsOldName: *const OLECHAR, pwcsNewName: *const OLECHAR) -> HRESULT>SetElementTimes: Option<unsafe extern "C" fn(This: *mut IStorage, pwcsName: *const OLECHAR, pctime: *const FILETIME, patime: *const FILETIME, pmtime: *const FILETIME) -> HRESULT>SetClass: Option<unsafe extern "C" fn(This: *mut IStorage, clsid: *const IID) -> HRESULT>SetStateBits: Option<unsafe extern "C" fn(This: *mut IStorage, grfStateBits: DWORD, grfMask: DWORD) -> HRESULT>Stat: Option<unsafe extern "C" fn(This: *mut IStorage, pstatstg: *mut STATSTG, grfStatFlag: DWORD) -> HRESULT>

Trait Implementations

impl Clone for IStorageVtbl[src]

impl Copy for IStorageVtbl[src]

impl Debug for IStorageVtbl[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.