]> granicus.if.org Git - apache/commitdiff
Some missing exports
authorWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 18 Jan 2001 23:52:03 +0000 (23:52 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Thu, 18 Jan 2001 23:52:03 +0000 (23:52 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87725 13f79535-47bb-0310-9956-ffa450edef68

include/http_log.h
include/http_vhost.h
modules/arch/win32/mod_isapi.c
os/win32/mod_isapi.c
os/win32/modules.c
server/log.c
server/vhost.c

index fa8aeb003973a3d1413a5fe535189389a4e1d0bd..10edf0dcd4f261349ee2106d4aa64c3c2d7a0089 100644 (file)
@@ -117,7 +117,7 @@ extern "C" {
  * Set up for logging to stderr.
  * @param p The pool to allocate out of
  */
-void ap_open_stderr_log(apr_pool_t *p);
+AP_DECLARE(void) ap_open_stderr_log(apr_pool_t *p);
 
 /**
  * Open the error log and replace stderr with it.
index f8c56874b3f7512a3f535c54a2c96995bb45e992..89b55adf878ba3183a866f097a0ef55156ee8c73 100644 (file)
@@ -74,8 +74,9 @@ void ap_init_vhost_config(apr_pool_t *p);
  * the run-time vhost lookups
  * @param p The pool to allocate out of
  * @param main_server The start of the virtual host list
+ * @deffunc ap_fini_vhost_config(apr_pool_t *p, server_rec *main_server)
  */
-void ap_fini_vhost_config(apr_pool_t *p, server_rec *main_server);
+AP_DECLARE(void) ap_fini_vhost_config(apr_pool_t *p, server_rec *main_server);
 
 /**
  * handle addresses in <VirtualHost> statement
index f7dfe6dfff8d67df33313c89ae759687cc102502..54a9e8de2afe587a56c49e82a84d616b90d1059f 100644 (file)
@@ -1264,7 +1264,7 @@ static const char *isapi_cmd_cachefile(cmd_parms *cmd, void *dummy,
     return NULL;
 }
 
-static void isapi_hooks(void)
+static void isapi_hooks(apr_pool_t *cont)
 {
     ap_hook_post_config(isapi_post_config, NULL, NULL, AP_HOOK_MIDDLE);
     ap_hook_handler(isapi_handler, NULL, NULL, AP_HOOK_MIDDLE);
index f7dfe6dfff8d67df33313c89ae759687cc102502..54a9e8de2afe587a56c49e82a84d616b90d1059f 100644 (file)
@@ -1264,7 +1264,7 @@ static const char *isapi_cmd_cachefile(cmd_parms *cmd, void *dummy,
     return NULL;
 }
 
-static void isapi_hooks(void)
+static void isapi_hooks(apr_pool_t *cont)
 {
     ap_hook_post_config(isapi_post_config, NULL, NULL, AP_HOOK_MIDDLE);
     ap_hook_handler(isapi_handler, NULL, NULL, AP_HOOK_MIDDLE);
index bf89eb0e9b9492bf5ad56605e5ff1a08c2883194..547d0f5a81f563c103f5636b269fbd3b6fa84990 100644 (file)
@@ -27,7 +27,7 @@ extern module action_module;
 extern module setenvif_module;
 extern module isapi_module;
 
-module *ap_prelinked_modules[] = {
+module AP_DECLARE_DATA *ap_prelinked_modules[] = {
   &core_module,
   &mpm_winnt_module,
   &so_module,
index fd6a20ae23ad4dc9d2de66a858f14fd6ec254b04..8fe8b89ad33bceb5de1ff9ac38aab58af26079de 100644 (file)
@@ -176,7 +176,7 @@ static const TRANS priorities[] = {
 
 static apr_file_t *stderr_log;
 
-void ap_open_stderr_log(apr_pool_t *p)
+AP_DECLARE(void) ap_open_stderr_log(apr_pool_t *p)
 {
     apr_open_stderr(&stderr_log, p);
 }
index 57d383a703a224e56ce8348e1d924654972999fc..7545e3a52e42216183c9adf96ea4e6a6a90d86c6 100644 (file)
@@ -552,7 +552,7 @@ static void remove_unused_name_vhosts(server_rec *main_s, ipaddr_chain **pic)
 }
 
 /* compile the tables and such we need to do the run-time vhost lookups */
-void ap_fini_vhost_config(apr_pool_t *p, server_rec *main_s)
+AP_DECLARE(void) ap_fini_vhost_config(apr_pool_t *p, server_rec *main_s)
 {
     server_addr_rec *sar;
     int has_default_vhost_addr;