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