AUTO_PROXY_SCRIPT_BUFFER structure
The AUTO_PROXY_SCRIPT_BUFFER structure is used to pass an autoproxy script in a buffer to InternetInitializeAutoProxyDll , instead of identifying a file that InternetInitializeAutoProxyDll opens.
Syntax
typedef struct { DWORD dwStructSize; LPSTR lpszScriptBuffer; DWORD dwScriptBufferSize; } AUTO_PROXY_SCRIPT_BUFFER;
Members
- dwStructSize
-
Size of this structure. Always set to "sizeof(AUTO_PROXY_SCRIPT_BUFFER)".
- lpszScriptBuffer
-
Pointer to the script buffer being passed using this structure.
- dwScriptBufferSize
-
Size of the script buffer pointed to by lpszScriptBuffer.
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
|
Minimum supported client |
Windows 2000 Professional [desktop apps only] |
|---|---|
|
Minimum supported server |
Windows 2000 Server [desktop apps only] |
|
Header |
|
See also
Show: