[][src]Struct CCODE::IInternetSessionVtbl

#[repr(C)]pub struct IInternetSessionVtbl {
    pub QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetSession, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>,
    pub AddRef: Option<unsafe extern "C" fn(This: *mut IInternetSession) -> ULONG>,
    pub Release: Option<unsafe extern "C" fn(This: *mut IInternetSession) -> ULONG>,
    pub RegisterNameSpace: Option<unsafe extern "C" fn(This: *mut IInternetSession, pCF: *mut IClassFactory, rclsid: *const IID, pwzProtocol: LPCWSTR, cPatterns: ULONG, ppwzPatterns: *const LPCWSTR, dwReserved: DWORD) -> HRESULT>,
    pub UnregisterNameSpace: Option<unsafe extern "C" fn(This: *mut IInternetSession, pCF: *mut IClassFactory, pszProtocol: LPCWSTR) -> HRESULT>,
    pub RegisterMimeFilter: Option<unsafe extern "C" fn(This: *mut IInternetSession, pCF: *mut IClassFactory, rclsid: *const IID, pwzType: LPCWSTR) -> HRESULT>,
    pub UnregisterMimeFilter: Option<unsafe extern "C" fn(This: *mut IInternetSession, pCF: *mut IClassFactory, pwzType: LPCWSTR) -> HRESULT>,
    pub CreateBinding: Option<unsafe extern "C" fn(This: *mut IInternetSession, pBC: LPBC, szUrl: LPCWSTR, pUnkOuter: *mut IUnknown, ppUnk: *mut *mut IUnknown, ppOInetProt: *mut *mut IInternetProtocol, dwOption: DWORD) -> HRESULT>,
    pub SetSessionOption: Option<unsafe extern "C" fn(This: *mut IInternetSession, dwOption: DWORD, pBuffer: LPVOID, dwBufferLength: DWORD, dwReserved: DWORD) -> HRESULT>,
    pub GetSessionOption: Option<unsafe extern "C" fn(This: *mut IInternetSession, dwOption: DWORD, pBuffer: LPVOID, pdwBufferLength: *mut DWORD, dwReserved: DWORD) -> HRESULT>,
}

Fields

QueryInterface: Option<unsafe extern "C" fn(This: *mut IInternetSession, riid: *const IID, ppvObject: *mut *mut c_void) -> HRESULT>AddRef: Option<unsafe extern "C" fn(This: *mut IInternetSession) -> ULONG>Release: Option<unsafe extern "C" fn(This: *mut IInternetSession) -> ULONG>RegisterNameSpace: Option<unsafe extern "C" fn(This: *mut IInternetSession, pCF: *mut IClassFactory, rclsid: *const IID, pwzProtocol: LPCWSTR, cPatterns: ULONG, ppwzPatterns: *const LPCWSTR, dwReserved: DWORD) -> HRESULT>UnregisterNameSpace: Option<unsafe extern "C" fn(This: *mut IInternetSession, pCF: *mut IClassFactory, pszProtocol: LPCWSTR) -> HRESULT>RegisterMimeFilter: Option<unsafe extern "C" fn(This: *mut IInternetSession, pCF: *mut IClassFactory, rclsid: *const IID, pwzType: LPCWSTR) -> HRESULT>UnregisterMimeFilter: Option<unsafe extern "C" fn(This: *mut IInternetSession, pCF: *mut IClassFactory, pwzType: LPCWSTR) -> HRESULT>CreateBinding: Option<unsafe extern "C" fn(This: *mut IInternetSession, pBC: LPBC, szUrl: LPCWSTR, pUnkOuter: *mut IUnknown, ppUnk: *mut *mut IUnknown, ppOInetProt: *mut *mut IInternetProtocol, dwOption: DWORD) -> HRESULT>SetSessionOption: Option<unsafe extern "C" fn(This: *mut IInternetSession, dwOption: DWORD, pBuffer: LPVOID, dwBufferLength: DWORD, dwReserved: DWORD) -> HRESULT>GetSessionOption: Option<unsafe extern "C" fn(This: *mut IInternetSession, dwOption: DWORD, pBuffer: LPVOID, pdwBufferLength: *mut DWORD, dwReserved: DWORD) -> HRESULT>

Trait Implementations

impl Clone for IInternetSessionVtbl[src]

impl Copy for IInternetSessionVtbl[src]

impl Debug for IInternetSessionVtbl[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.