You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
757 B
37 lines
757 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
httpfilt.hxx
|
|
|
|
Abstract:
|
|
|
|
This file contains headers for the WININET HTTP filters.
|
|
|
|
Contents:
|
|
HttpFiltOpen
|
|
HttpFiltClose
|
|
HttpFiltOnRequest
|
|
HttpFiltOnResponse
|
|
HttpFiltOnTransactionComplete
|
|
HttpFiltOnBlockingOps
|
|
|
|
Author:
|
|
|
|
Rajeev Dujari (RajeevD) 01-Jul-1996
|
|
|
|
Revision History:
|
|
|
|
01-Jul-1996 rajeevd
|
|
Created
|
|
|
|
--*/
|
|
|
|
BOOL HttpFiltOpen (void);
|
|
BOOL HttpFiltClose (void);
|
|
BOOL HttpFiltOnRequest (LPVOID pRequest);
|
|
BOOL HttpFiltOnResponse (LPVOID pRequest);
|
|
BOOL HttpFiltOnTransactionComplete (HINTERNET hRequest);
|
|
BOOL HttpFiltOnBlockingOps(LPVOID pRequest, HINTERNET hRequest, HWND hwnd);
|