1/*-
2 * Copyright (c) 2004,2008 Oracle.  All rights reserved.
3 *
4 * http://www.apache.org/licenses/LICENSE-2.0.txt
5 *
6 * authors: George Schlossnagle <george@omniti.com>
7 */
8
9#ifndef MOD_DB4_EXPORT_H
10#define MOD_DB4_EXPORT_H
11
12#include "db_cxx.h"
13
14#if defined(__cplusplus)
15extern "C" {
16#endif
17
18int mod_db4_db_env_create(DB_ENV **dbenvp, u_int32_t flags);
19int mod_db4_db_create(DB **dbp, DB_ENV *dbenv, u_int32_t flags);
20void mod_db4_child_clean_request_shutdown();
21void mod_db4_child_clean_process_shutdown();
22
23#if defined(__cplusplus)
24}
25#endif
26
27#endif
28