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/* 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
20 */
21
22#include "httpd.h"
23#include "http_config.h"
24
25extern module core_module;
26extern module win32_module;
27extern module mpm_winnt_module;
28extern module http_module;
29extern module so_module;
30
31AP_DECLARE_DATA module *ap_prelinked_modules[] = {
32  &core_module, /* core must come first */
33  &win32_module,
34  &mpm_winnt_module,
35  &http_module,
36  &so_module,
37  NULL
38};
39
40ap_module_symbol_t ap_prelinked_module_symbols[] = {
41  {"core_module", &core_module},
42  {"win32_module", &win32_module},
43  {"mpm_winnt_module", &mpm_winnt_module},
44  {"http_module", &http_module},
45  {"so_module", &so_module},
46  {NULL, NULL}
47};
48
49AP_DECLARE_DATA module *ap_preloaded_modules[] = {
50  &core_module,
51  &win32_module,
52  &mpm_winnt_module,
53  &http_module,
54  &so_module,
55  NULL
56};
57