Where Online Learning is simpler!
The C and C++ Include Header Files
/usr/include/apache2/modperl_pcw.h
$ cat -n /usr/include/apache2/modperl_pcw.h 1 /* Licensed to the Apache Software Foundation (ASF) under one or more 2 * contributor license agreements. See the NOTICE file distributed with 3 * this work for additional information regarding copyright ownership. 4 * The ASF licenses this file to You under the Apache License, Version 2.0 5 * (the "License"); you may not use this file except in compliance with 6 * the License. You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #ifndef MODPERL_PCW_H 18 #define MODPERL_PCW_H 19 20 typedef int (*ap_pcw_dir_cb_t) (apr_pool_t *, server_rec *, 21 void *, char *, void *); 22 23 typedef int (*ap_pcw_srv_cb_t) (apr_pool_t *, server_rec *, 24 void *, void *); 25 26 void ap_pcw_walk_location_config(apr_pool_t *pconf, server_rec *s, 27 core_server_config *sconf, 28 module *modp, 29 ap_pcw_dir_cb_t dir_cb, void *data); 30 31 void ap_pcw_walk_directory_config(apr_pool_t *pconf, server_rec *s, 32 core_server_config *sconf, 33 module *modp, 34 ap_pcw_dir_cb_t dir_cb, void *data); 35 36 void ap_pcw_walk_files_config(apr_pool_t *pconf, server_rec *s, 37 core_dir_config *dconf, 38 module *modp, 39 ap_pcw_dir_cb_t dir_cb, void *data); 40 41 void ap_pcw_walk_default_config(apr_pool_t *pconf, server_rec *s, 42 module *modp, 43 ap_pcw_dir_cb_t dir_cb, void *data); 44 45 void ap_pcw_walk_server_config(apr_pool_t *pconf, server_rec *s, 46 module *modp, 47 ap_pcw_srv_cb_t srv_cb, void *data); 48 49 void ap_pcw_walk_config(apr_pool_t *pconf, server_rec *s, 50 module *modp, void *data, 51 ap_pcw_dir_cb_t dir_cb, ap_pcw_srv_cb_t srv_cb); 52 53 #endif /* MODPERL_PCW_H */ 54 55 /* 56 * Local Variables: 57 * c-basic-offset: 4 58 * indent-tabs-mode: nil 59 * End: 60 */
Contact us
|
About us
|
Term of use
|
Copyright © 2000-2025 MyWebUniversity.com ™