Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

The ISAPI filter calls this function to send data to the HTTP client. The WriteClientname for this function is a placeholder for the function name defined by the header.

Syntax

BOOL (WINAPI* WriteClient)(
  PHTTP_FILTER_CONTEXT 
pfc,
  LPVOID 
Buffer,
  LPDWORD 
lpdwBytes,
  DWORD 
dwReserved
);

Parameters

pfc

[in] Pointer to an HTTP_FILTER_CONTEXTstructure that is associated with the current, active HTTP transaction.

Buffer

[in] Buffer containing data to send to the client.

lpdwBytes

[in] Size of the buffer indicated by Buffer.

dwReserved

[in] Reserved for future use.

Return Value

Returns TRUE if the function succeeds, and FALSE otherwise. To determine the cause of a failure, the filter should call GetLastError.

Requirements

Header httpfilt.h
Library Developer Implemented
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Pocket PC 2000 and later, Smartphone 2002 and later

See Also