Struct sciter::host::SCN_LOAD_DATA [] [src]

#[repr(C)]
pub struct SCN_LOAD_DATA { pub code: UINT, pub hwnd: HWINDOW, pub uri: LPCWSTR, pub outData: LPCBYTE, pub outDataSize: UINT, pub dataType: SCITER_RESOURCE_TYPE, pub request_id: *mut _HREQUEST, pub principal: HELEMENT, pub initiator: HELEMENT, }

Notifies that Sciter is about to download a referred resource.

Fields

SC_LOAD_DATA here.

HWINDOW of the window this callback was attached to.

[in] Zero terminated string, fully qualified uri, for example "http://server/folder/file.ext".

[in,out] pointer to loaded data to return. If data exists in the cache then this field contain pointer to it.

[in,out] loaded data size to return.

[in] resource type category

[in] request handle that can be used with sciter request API.

[in] destination element for request.

[in] source element for request.

Trait Implementations

impl Debug for SCN_LOAD_DATA
[src]

Formats the value using the given formatter.