AutoProxyHelperFunctions structure (wininet.h)

The AutoProxyHelperFunctions structure is used to create a v-table of Proxy Auto-Config (PAC) functions that can be passed to InternetInitializeAutoProxyDll.

See the Navigator Proxy Auto-Config (PAC) File Format documentation for a specification of the form and use of Proxy Auto-Config helper functions.

Syntax

typedef struct AutoProxyHelperFunctions {
  const AutoProxyHelperVtbl *lpVtbl;
  struct                    AutoProxyHelperVtbl;
} AutoProxyHelperFunctions;

Members

lpVtbl

Pointer to an AutoProxyHelperVtbl structure that contains an array of pointers to autoproxy helper functions.

AutoProxyHelperVtbl

Remarks

Together with the AutoProxyHelperVtbl structure, AutoProxyHelperFunctions serves to create a standard v-table that can be declared and populated using C rather than requiring the use of C++.

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

AutoProxyHelperVtbl

InternetInitializeAutoProxyDll