Share via


WriteClient (ISAPI Filters) (Windows CE 5.0)

Send Feedback

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

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

Parameters

  • pfc
    [in] Pointer to an HTTP_FILTER_CONTEXT structure 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 Values

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

Requirements

Pocket PC: Pocket PC 2000 and later.
Smartphone: Smartphone 2002 and later.
OS Versions: Windows CE 3.0 and later.
Header: Httpfilt.h.
Link Library: Not applicable.

See Also

HTTP_FILTER_CONTEXT

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.