Import of bind-9.3.2-P1
[dragonfly.git] / contrib / bind-9.3 / lib / isccc / include / isccc / types.h
1 /*
2  * Portions Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Portions Copyright (C) 2001  Internet Software Consortium.
4  * Portions Copyright (C) 2001  Nominum, Inc.
5  *
6  * Permission to use, copy, modify, and 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 AND NOMINUM DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY
13  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 /* $Id: types.h,v 1.2.206.1 2004/03/06 08:15:23 marka Exp $ */
20
21 #ifndef ISCCC_TYPES_H
22 #define ISCCC_TYPES_H 1
23
24 #include <isc/boolean.h>
25 #include <isc/int.h>
26 #include <isc/result.h>
27
28 typedef isc_uint32_t isccc_time_t;
29 typedef struct isccc_sexpr isccc_sexpr_t;
30 typedef struct isccc_dottedpair isccc_dottedpair_t;
31 typedef struct isccc_symtab isccc_symtab_t;
32
33 typedef struct isccc_region {
34         unsigned char *         rstart;
35         unsigned char *         rend;
36 } isccc_region_t;
37
38 #endif /* ISCCC_TYPES_H */