mod_status.h revision 04891cf70e0bfc38bfb027541dc821f04c754ff7
/* Copyright 2003-2004 Apache Software Foundation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef MOD_STATUS_H
#define MOD_STATUS_H
#include "ap_config.h"
#include "httpd.h"
#if !defined(WIN32)
#define STATUS_DECLARE_DATA
#elif defined(STATUS_DECLARE_STATIC)
#define STATUS_DECLARE_DATA
#elif defined(STATUS_DECLARE_EXPORT)
#else
#endif
/* Optional hooks which can insert extra content into the mod_status
* output. FLAGS will be set to the bitwise OR of any of the
* AP_STATUS_* flags.
*
* Implementations of this hook should generate content using
* functions in the ap_rputs/ap_rprintf family; each hook should
* return OK or DECLINED. */
(request_rec *r, int flags))
#endif