This structure is used by the IG_gui_load_url_dlg function to input parameters required to load image from Internet.
Copy Code
|
|
---|---|
typedef struct tagAT_IGGUI_URL_INFO
{
CHAR HostName[_MAX_PATH];
CHAR URLPath[_MAX_PATH];
CHAR UserName[80];
CHAR Password[80];
LONG nServerPort;
DWORD dwService;
DWORD dwAccessType;
CHAR ProxyName[ _MAX_PATH];
CHAR ProxyBypass[ _MAX_PATH];
DWORD dwFlags;
}AT_IGGUI_URL_INFO;
|
Name | Type | Description |
---|---|---|
HostName | CHAR[_MAX_PATH] | Filename of host from where to load. |
URLPath | CHAR[_MAX_PATH] | URL path. |
UserName | CHAR[80] | The same as InternetConnect(...lpszUserName...). |
Password | CHAR[80] | The same as InternetConnect(...lpszPassword...). |
nServerPort | LONG | The same as InternetConnect(...nServerPort...). |
dwService | DWORD | The same as InternetConnect(...dwService...). |
dwAccessType | DWORD | The same as InternetOpen(...dwAccessType.. ). |
ProxyName | CHAR[ _MAX_PATH] | The same as InternetOpen(...lpszProxyName...). |
ProxyBypass | CHAR[ _MAX_PATH] | The same as InternetOpen(...lpszProxyBypass...). |
dwFlags | DWORD | The same as InternetOpen(...dwFlags...). |