xref: /minix/external/bsd/bind/dist/lib/isc/include/isc/bind9.h (revision 00b67f09)
1 /*	$NetBSD: bind9.h,v 1.6 2014/12/10 04:38:00 christos Exp $	*/
2 
3 /*
4  * Copyright (C) 2009, 2013  Internet Systems Consortium, Inc. ("ISC")
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /* Id: bind9.h,v 1.2 2009/12/05 23:31:41 each Exp  */
20 
21 #ifndef ISC_BIND9_H
22 #define ISC_BIND9_H 1
23 
24 #include <isc/boolean.h>
25 #include <isc/platform.h>
26 
27 /*
28  * This determines whether we are using the libisc/libdns libraries
29  * in BIND9 or in some other application.  For BIND9 (named and related
30  * tools) it must be set to ISC_TRUE at runtime.  Export library clients
31  * will call isc_lib_register(), which will set it to ISC_FALSE.
32  */
33 LIBISC_EXTERNAL_DATA extern isc_boolean_t isc_bind9;
34 
35 #endif /* ISC_BIND9_H */
36