Struct sciter::host::SCN_DATA_LOADED [] [src]

#[repr(C)]
pub struct SCN_DATA_LOADED { pub code: UINT, pub hwnd: HWINDOW, pub uri: LPCWSTR, pub data: LPCBYTE, pub dataSize: UINT, pub dataType: UINT, pub status: UINT, }

This notification indicates that external data (for example image) download process completed.

Fields

SC_DATA_LOADED 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] pointer to loaded data.

[in] loaded data size (in bytes).

[in] resource type category

Download status code:

  • status = 0 and dataSize == 0 - unknown error.
  • status = 100..505 - http response status, note: 200 - OK!
  • status > 12000 - wininet error code, see ERROR_INTERNET_*** in wininet.h

Trait Implementations

impl Debug for SCN_DATA_LOADED
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations