switch to a 60 bit hash
[httpd-crcsyncproxy.git] / os / win32 / modules.c
blobfb34b3db43cdcced77af2e3877c3cbfb3d1a6754
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 /* modules.c --- major modules compiled into Apache for Win32.
18 * Only insert an entry for a module if it must be compiled into
19 * the core server
22 #include "httpd.h"
23 #include "http_config.h"
25 extern module core_module;
26 extern module win32_module;
27 extern module mpm_winnt_module;
28 extern module http_module;
29 extern module so_module;
30 extern module watchdog_module;
32 AP_DECLARE_DATA module *ap_prelinked_modules[] = {
33 &core_module,
34 &win32_module,
35 &mpm_winnt_module,
36 &http_module,
37 &so_module,
38 &watchdog_module,
39 NULL
42 ap_module_symbol_t ap_prelinked_module_symbols[] = {
43 {"core_module", &core_module},
44 {"win32_module", &win32_module},
45 {"mpm_winnt_module", &mpm_winnt_module},
46 {"http_module", &http_module},
47 {"so_module", &so_module},
48 {"watchdog_module", &watchdog_module},
49 {NULL, NULL}
52 AP_DECLARE_DATA module *ap_preloaded_modules[] = {
53 &core_module,
54 &win32_module,
55 &mpm_winnt_module,
56 &http_module,
57 &so_module,
58 &watchdog_module,
59 NULL