INTERNET_AUTH_NOTIFY_DATA structure (wininet.h)

Contains the notification data for an authentication request.

Syntax

typedef struct {
  DWORD           cbStruct;
  DWORD           dwOptions;
  PFN_AUTH_NOTIFY pfnNotify;
  DWORD_PTR       dwContext;
} INTERNET_AUTH_NOTIFY_DATA;

Members

cbStruct

Size of the structure, in bytes.

dwOptions

pfnNotify

Notification callback to retry InternetErrorDlg.

dwContext

Pointer to a variable that contains an application-defined value used to identify the application context to pass to the notification function.

Remarks

Note  WinINet does not support server implementations. In addition, it should not be used from a service. For server implementations or services use Microsoft Windows HTTP Services (WinHTTP).
 

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header wininet.h

See also

InternetErrorDlg