HSE_SEND_HEADER_EX_INFO

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This structure contains connection information, including a value to indicate if the connection being used to service the current request should be kept active for further processing. This structure is used with the HSE_REQ_SEND_RESPONSE_HEADER_EX request type for the ServerSupportFunction (ISAPI Extensions).

Syntax

typedef struct _HSE_SEND_HEADER_EX_INFO{
  LPCSTR pszStatus;
  LPCSTR pszHeader;
  DWORD cchStatus;
  DWORD cchHeader;
  BOOL fKeepConn;
} HSE_SEND_HEADER_EX_INFO, *LPHSE_SEND_HEADER_EX_INFO;

Members

  • pszStatus
    Pointer to the status of the current request.
  • pszHeader
    Pointer to the header to return.
  • cchStatus
    Number of characters in the status code.
  • cchHeader
    Number of characters in the header.
  • fKeepConn
    TRUE if the connection used to process the request should remain active, and FALSE otherwise.

Requirements

Header httpext.h
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Pocket PC 2000 and later, Smartphone 2002 and later

See Also

Reference

ServerSupportFunction (ISAPI Extensions)