[][src]Struct pspsdk_sys::sdk::pspUtilityHtmlViewerParam

#[repr(C)]pub struct pspUtilityHtmlViewerParam {
    pub base: pspUtilityDialogCommon,
    pub memaddr: *mut c_void,
    pub memsize: c_uint,
    pub unknown1: c_int,
    pub unknown2: c_int,
    pub initialurl: *mut c_char,
    pub numtabs: c_uint,
    pub interfacemode: c_uint,
    pub options: c_uint,
    pub dldirname: *mut c_char,
    pub dlfilename: *mut c_char,
    pub uldirname: *mut c_char,
    pub ulfilename: *mut c_char,
    pub cookiemode: c_uint,
    pub unknown3: c_uint,
    pub homeurl: *mut c_char,
    pub textsize: c_uint,
    pub displaymode: c_uint,
    pub connectmode: c_uint,
    pub disconnectmode: c_uint,
    pub memused: c_uint,
    pub unknown4: [c_int; 10],
}

Fields

base: pspUtilityDialogCommonmemaddr: *mut c_void

Pointer to the memory pool to be used

memsize: c_uint

Size of the memory pool

unknown1: c_int

Unknown. Pass 0

unknown2: c_int

Unknown. Pass 0

initialurl: *mut c_char

URL to be opened initially

numtabs: c_uint

Number of tabs (maximum of 3)

interfacemode: c_uint

One of ::pspUtilityHtmlViewerInterfaceModes

options: c_uint

Values from ::pspUtilityHtmlViewerOptions. Bitwise OR together

dldirname: *mut c_char

Directory to be used for downloading

dlfilename: *mut c_char

Filename to be used for downloading

uldirname: *mut c_char

Directory to be used for uploading

ulfilename: *mut c_char

Filename to be used for uploading

cookiemode: c_uint

One of ::pspUtilityHtmlViewerCookieModes

unknown3: c_uint

Unknown. Pass 0

homeurl: *mut c_char

URL to set the home page to

textsize: c_uint

One of ::pspUtilityHtmlViewerTextSizes

displaymode: c_uint

One of ::pspUtilityHtmlViewerDisplayModes

connectmode: c_uint

One of ::pspUtilityHtmlViewerConnectModes

disconnectmode: c_uint

One of ::pspUtilityHtmlViewerDisconnectModes

memused: c_uint

The maximum amount of memory the browser used

unknown4: [c_int; 10]

Unknown. Pass 0

Trait Implementations

impl Clone for pspUtilityHtmlViewerParam[src]

impl Copy for pspUtilityHtmlViewerParam[src]

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