SetHeader (Windows CE 5.0)
This callback function is an application-defined function. ISAPI filters call this function to change or delete the value of a header. The SetHeader name for this function is a placeholder for the function name defined by the header.
This function can be used to change the special values included in the request line. For more information about the limitations of this function, see ISAPI Filters and HTTP Headers.
BOOL (WINAPI* SetHeader)(PHTTP_FILTER_CONTEXTpfc,LPSTR lpszName,LPSTR lpszValue);
Parameters
- pfc
[in] Pointer to an HTTP_FILTER_CONTEXT structure that is associated with the current, active HTTP transaction. - lpszName
[in] Pointer to the name of the header to change or delete. - lpszValue
[in] Pointer to the new string for the header, or to "\0" (to delete the header).
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 | ISAPI Filters and HTTP Headers
Send Feedback on this topic to the authors