Share via


HTTP_FILTER_PREPROC_HEADERS (Windows CE 5.0)

Send Feedback

This structure contains the notification information for use when the server is about to process the client headers. It is pointed to by the pvNotification parameter in HttpFilterProc when the NotificationType parameter is SF_NOTIFY_PREPROC_HEADERS.

typedef struct _HTTP_FILTER_PREPROC_HEADERS{BOOL (WINAPI* GetHeader)(struct _HTTP_FILTER_CONTEXT*pfc,
  LPSTRlpszName,
  LPVOIDlpvBuffer,
  LPDWORDlpdwSize  );BOOL (WINAPI* SetHeader)(struct _HTTP_FILTER_CONTEXT*pfc,
  LPSTRlpszName,
  LPSTRlpszValue  );BOOL (WINAPI* AddHeader)(struct _HTTP_FILTER_CONTEXT* pfc,
  LPSTRlpszName,
  LPSTRlpszValue  );DWORDHttpStatus;
  DWORD dwReserved;
} HTTP_FILTER_PREPROC_HEADERS, *PHTTP_FILTER_PREPROC_HEADERS;

Members

  • GetHeader
    Pointer to the GetHeader function, which retrieves the specified header value. Header names must include the trailing colon (:).
  • SetHeader
    Pointer to the SetHeader function, which changes or deletes the value of a header.
  • AddHeader
    Pointer to the AddHeader function to add a header to the response.
  • HttpStatus
    Current HTTP status code.
  • dwReserved
    Reserved for later use.

Requirements

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

See Also

HttpFilterProc | GetHeader | SetHeader | AddHeader

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.