WriteClient

The WriteClient callback function is called by an ISAPI filter to send data to the client.

BOOL WINAPI * WriteClient(
  struct _HTTP_FILTER_CONTEXT * pfc
  LPVOID buffer,
  LPDWORD lpdwBytes,
  DWORD dwReserved
);
 

Parameters

pfc
Points to an HTTP_FILTER_CONTEXT structure.
buffer
A buffer containing data to send to the client.
lpdwBytes
The size of the buffer pointed to by buffer.
dwReserved
Reserved for future use.