1 /*
2  * Copyright (C) Internet Systems Consortium, Inc. ("ISC")
3  *
4  * SPDX-License-Identifier: MPL-2.0
5  *
6  * This Source Code Form is subject to the terms of the Mozilla Public
7  * License, v. 2.0. If a copy of the MPL was not distributed with this
8  * file, you can obtain one at https://mozilla.org/MPL/2.0/.
9  *
10  * See the COPYRIGHT file distributed with this work for additional
11  * information regarding copyright ownership.
12  */
13 
14 #pragma once
15 
16 #include <dns/dlz_dlopen.h>
17 
18 /*
19  * This header includes the declarations of entry points.
20  */
21 
22 dlz_dlopen_version_t dlz_version;
23 dlz_dlopen_create_t dlz_create;
24 dlz_dlopen_destroy_t dlz_destroy;
25 dlz_dlopen_findzonedb_t dlz_findzonedb;
26 dlz_dlopen_lookup_t dlz_lookup;
27 dlz_dlopen_allowzonexfr_t dlz_allowzonexfr;
28 dlz_dlopen_allnodes_t dlz_allnodes;
29 dlz_dlopen_newversion_t dlz_newversion;
30 dlz_dlopen_closeversion_t dlz_closeversion;
31 dlz_dlopen_configure_t dlz_configure;
32 dlz_dlopen_ssumatch_t dlz_ssumatch;
33 dlz_dlopen_addrdataset_t dlz_addrdataset;
34 dlz_dlopen_subrdataset_t dlz_subrdataset;
35 dlz_dlopen_delrdataset_t dlz_delrdataset;
36