/usr/src/redhat/BUILD/httpd-2.2.3/modules/generators/mod_status.h

説明を見る。
00001 /* Licensed to the Apache Software Foundation (ASF) under one or more
00002  * contributor license agreements.  See the NOTICE file distributed with
00003  * this work for additional information regarding copyright ownership.
00004  * The ASF licenses this file to You under the Apache License, Version 2.0
00005  * (the "License"); you may not use this file except in compliance with
00006  * the License.  You may obtain a copy of the License at
00007  *
00008  *     http://www.apache.org/licenses/LICENSE-2.0
00009  *
00010  * Unless required by applicable law or agreed to in writing, software
00011  * distributed under the License is distributed on an "AS IS" BASIS,
00012  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
00013  * See the License for the specific language governing permissions and
00014  * limitations under the License.
00015  */
00016 
00026 #ifndef MOD_STATUS_H
00027 #define MOD_STATUS_H
00028 
00029 #include "ap_config.h"
00030 #include "httpd.h"
00031 
00032 #define AP_STATUS_SHORT    (0x1)  /* short, non-HTML report requested */
00033 #define AP_STATUS_NOTABLE  (0x2)  /* HTML report without tables */
00034 #define AP_STATUS_EXTENDED (0x4)  /* detailed report */
00035 
00036 #if !defined(WIN32)
00037 #define STATUS_DECLARE(type)            type
00038 #define STATUS_DECLARE_NONSTD(type)     type
00039 #define STATUS_DECLARE_DATA
00040 #elif defined(STATUS_DECLARE_STATIC)
00041 #define STATUS_DECLARE(type)            type __stdcall
00042 #define STATUS_DECLARE_NONSTD(type)     type
00043 #define STATUS_DECLARE_DATA
00044 #elif defined(STATUS_DECLARE_EXPORT)
00045 #define STATUS_DECLARE(type)            __declspec(dllexport) type __stdcall
00046 #define STATUS_DECLARE_NONSTD(type)     __declspec(dllexport) type
00047 #define STATUS_DECLARE_DATA             __declspec(dllexport)
00048 #else
00049 #define STATUS_DECLARE(type)            __declspec(dllimport) type __stdcall
00050 #define STATUS_DECLARE_NONSTD(type)     __declspec(dllimport) type
00051 #define STATUS_DECLARE_DATA             __declspec(dllimport)
00052 #endif
00053 
00054 /* Optional hooks which can insert extra content into the mod_status
00055  * output.  FLAGS will be set to the bitwise OR of any of the
00056  * AP_STATUS_* flags.
00057  *
00058  * Implementations of this hook should generate content using
00059  * functions in the ap_rputs/ap_rprintf family; each hook should
00060  * return OK or DECLINED. */
00061 APR_DECLARE_EXTERNAL_HOOK(ap, STATUS, int, status_hook,
00062                           (request_rec *r, int flags))
00063 #endif
00064 

Apacheに対してSun Jul 19 22:05:23 2009に生成されました。  doxygen 1.4.7