No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / bind / include / lwres / platform.h
bloba7e5257ebb21a1ab0efe51edd37f8df4644e0302
1 /*
2 * Copyright (C) 2004, 2005, 2007 Internet Systems Consortium, Inc. ("ISC")
3 * Copyright (C) 2000, 2001 Internet Software Consortium.
5 * Permission to use, copy, modify, and/or distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
9 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10 * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11 * AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12 * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13 * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14 * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15 * PERFORMANCE OF THIS SOFTWARE.
18 /* Id: platform.h.in,v 1.21 2007/06/19 23:47:23 tbox Exp */
20 /*! \file */
22 #ifndef LWRES_PLATFORM_H
23 #define LWRES_PLATFORM_H 1
25 /*****
26 ***** Platform-dependent defines.
27 *****/
29 /***
30 *** Network.
31 ***/
34 * Define if this system needs the <netinet/in6.h> header file for IPv6.
36 #undef LWRES_PLATFORM_NEEDNETINETIN6H
39 * Define if this system needs the <netinet6/in6.h> header file for IPv6.
41 #undef LWRES_PLATFORM_NEEDNETINET6IN6H
44 * If sockaddrs on this system have an sa_len field, LWRES_PLATFORM_HAVESALEN
45 * will be defined.
47 #define LWRES_PLATFORM_HAVESALEN 1
50 * If this system has the IPv6 structure definitions, LWRES_PLATFORM_HAVEIPV6
51 * will be defined.
53 #define LWRES_PLATFORM_HAVEIPV6 1
56 * If this system is missing in6addr_any, LWRES_PLATFORM_NEEDIN6ADDRANY will
57 * be defined.
59 #undef LWRES_PLATFORM_NEEDIN6ADDRANY
62 * If this system is missing in6addr_loopback,
63 * LWRES_PLATFORM_NEEDIN6ADDRLOOPBACK will be defined.
65 #undef LWRES_PLATFORM_NEEDIN6ADDRLOOPBACK
68 * If this system has in_addr6, rather than in6_addr,
69 * LWRES_PLATFORM_HAVEINADDR6 will be defined.
71 #undef LWRES_PLATFORM_HAVEINADDR6
74 * Defined if unistd.h does not cause fd_set to be delared.
76 #undef LWRES_PLATFORM_NEEDSYSSELECTH
79 * Used to control how extern data is linked; needed for Win32 platforms.
81 #undef LWRES_PLATFORM_USEDECLSPEC
84 * Defined this system needs vsnprintf() and snprintf().
86 #undef LWRES_PLATFORM_NEEDVSNPRINTF
89 * If this system need a modern sprintf() that returns (int) not (char*).
91 #undef LWRES_PLATFORM_NEEDSPRINTF
94 * The printf format string modifier to use with lwres_uint64_t values.
96 #define LWRES_PLATFORM_QUADFORMAT "ll"
98 /*! \brief
99 * Define if this system needs strtoul.
101 #undef LWRES_PLATFORM_NEEDSTRTOUL
103 #ifndef LWRES_PLATFORM_USEDECLSPEC
104 #define LIBLWRES_EXTERNAL_DATA
105 #else
106 #ifdef LIBLWRES_EXPORTS
107 #define LIBLWRES_EXTERNAL_DATA __declspec(dllexport)
108 #else
109 #define LIBLWRES_EXTERNAL_DATA __declspec(dllimport)
110 #endif
111 #endif
114 * Tell Emacs to use C mode on this file.
115 * Local Variables:
116 * mode: c
117 * End:
120 #endif /* LWRES_PLATFORM_H */