home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F277190_apr.h < prev    next >
C/C++ Source or Header  |  2004-09-23  |  15KB  |  522 lines

  1. /* Copyright 2000-2004 The Apache Software Foundation
  2.  *
  3.  * Licensed under the Apache License, Version 2.0 (the "License");
  4.  * you may not use this file except in compliance with the License.
  5.  * You may obtain a copy of the License at
  6.  *
  7.  *     http://www.apache.org/licenses/LICENSE-2.0
  8.  *
  9.  * Unless required by applicable law or agreed to in writing, software
  10.  * distributed under the License is distributed on an "AS IS" BASIS,
  11.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12.  * See the License for the specific language governing permissions and
  13.  * limitations under the License.
  14.  */
  15.  
  16.  
  17. #ifndef APR_H
  18. #define APR_H
  19.  
  20. /* GENERATED FILE WARNING!  DO NOT EDIT apr.h
  21.  *
  22.  * You must modify apr.hw instead.
  23.  *
  24.  * And please, make an effort to stub apr.hnw and apr.h.in in the process.
  25.  *
  26.  * This is the Win32 specific version of apr.h.  It is copied from
  27.  * apr.hw by the apr.dsp and libapr.dsp projects. 
  28.  */
  29.  
  30. /**
  31.  * @file apr.h
  32.  * @brief APR Platform Definitions
  33.  * @remark This is a generated header generated from include/apr.h.in by
  34.  * ./configure, or copied from include/apr.hw or include/apr.hnw 
  35.  * for Win32 or Netware by those build environments, respectively.
  36.  */
  37.  
  38. #if defined(WIN32) || defined(DOXYGEN)
  39.  
  40. /* Ignore most warnings (back down to /W3) for poorly constructed headers
  41.  */
  42. #if defined(_MSC_VER) && _MSC_VER >= 1200
  43. #pragma warning(push, 3)
  44. #endif
  45.  
  46. /* disable or reduce the frequency of...
  47.  *   C4057: indirection to slightly different base types
  48.  *   C4075: slight indirection changes (unsigned short* vs short[])
  49.  *   C4100: unreferenced formal parameter
  50.  *   C4127: conditional expression is constant
  51.  *   C4201: nonstandard extension nameless struct/unions
  52.  *   C4244: int to char/short - precision loss
  53.  *   C4514: unreferenced inline function removed
  54.  */
  55. #pragma warning(disable: 4100 4127 4201 4514; once: 4057 4075 4244)
  56.  
  57. /* Has windows.h already been included?  If so, our preferences don't matter,
  58.  * but we will still need the winsock things no matter what was included.
  59.  * If not, include a restricted set of windows headers to our tastes.
  60.  */
  61. #ifndef _WINDOWS_
  62. #ifndef WIN32_LEAN_AND_MEAN
  63. #define WIN32_LEAN_AND_MEAN
  64. #endif
  65. #ifndef _WIN32_WINNT
  66.  
  67. /* Restrict the server to a subset of Windows NT 4.0 header files by default
  68.  */
  69. #define _WIN32_WINNT 0x0400
  70. #endif
  71. #ifndef NOUSER
  72. #define NOUSER
  73. #endif
  74. #ifndef NOMCX
  75. #define NOMCX
  76. #endif
  77. #ifndef NOIME
  78. #define NOIME
  79. #endif
  80. #include <windows.h>
  81. /* 
  82.  * Add a _very_few_ declarations missing from the restricted set of headers
  83.  * (If this list becomes extensive, re-enable the required headers above!)
  84.  * winsock headers were excluded by WIN32_LEAN_AND_MEAN, so include them now
  85.  */
  86. #define SW_HIDE             0
  87. #ifndef _WIN32_WCE
  88. #include <winsock2.h>
  89. #include <mswsock.h>
  90. #else
  91. #include <winsock.h>
  92. #endif
  93. #endif /* !_WINDOWS_ */
  94.  
  95. /**
  96.  * @defgroup apr_platform Platform Definitions
  97.  * @ingroup APR 
  98.  * @{
  99.  */
  100.  
  101. #define APR_INLINE __inline
  102. #define APR_HAS_INLINE          1
  103. #ifndef __attribute__
  104. #define __attribute__(__x)
  105. #endif
  106.  
  107. #define NO_USE_SIGACTION
  108.  
  109. #ifndef _WIN32_WCE
  110. #define APR_HAVE_ARPA_INET_H    0
  111. #define APR_HAVE_CONIO_H        1
  112. #define APR_HAVE_CRYPT_H        0
  113. #define APR_HAVE_CTYPE_H        1
  114. #define APR_HAVE_DIRENT_H       0
  115. #define APR_HAVE_ERRNO_H        1
  116. #define APR_HAVE_FCNTL_H        1
  117. #define APR_HAVE_IO_H           1
  118. #define APR_HAVE_LIMITS_H       1
  119. #define APR_HAVE_NETDB_H        0
  120. #define APR_HAVE_NETINET_IN_H   0
  121. #define APR_HAVE_NETINET_SCTP_H 0
  122. #define APR_HAVE_NETINET_SCTP_UIO_H 0
  123. #define APR_HAVE_NETINET_TCP_H  0
  124. #define APR_HAVE_PTHREAD_H      0
  125. #define APR_HAVE_SIGNAL_H       1
  126. #define APR_HAVE_STDARG_H       1
  127. #define APR_HAVE_STDINT_H       0
  128. #define APR_HAVE_STDIO_H        1
  129. #define APR_HAVE_STDLIB_H       1
  130. #define APR_HAVE_STRING_H       1
  131. #define APR_HAVE_STRINGS_H      0
  132. #define APR_HAVE_SYS_SENDFILE_H 0
  133. #define APR_HAVE_SYS_SIGNAL_H   0
  134. #define APR_HAVE_SYS_SOCKET_H   0
  135. #define APR_HAVE_SYS_SOCKIO_H   0
  136. #define APR_HAVE_SYS_SYSLIMITS_H 0
  137. #define APR_HAVE_SYS_TIME_H     0
  138. #define APR_HAVE_SYS_TYPES_H    1
  139. #define APR_HAVE_SYS_UIO_H      0
  140. #define APR_HAVE_SYS_WAIT_H     0
  141. #define APR_HAVE_UNISTD_H       0
  142. #define APR_HAVE_STDDEF_H       1
  143. #define APR_HAVE_PROCESS_H      1
  144. #define APR_HAVE_TIME_H         1
  145. #else
  146. #define APR_HAVE_ARPA_INET_H    0
  147. #define APR_HAVE_CONIO_H        0
  148. #define APR_HAVE_CRYPT_H        0
  149. #define APR_HAVE_CTYPE_H        0
  150. #define APR_HAVE_DIRENT_H       0
  151. #define APR_HAVE_ERRNO_H        0
  152. #define APR_HAVE_FCNTL_H        0
  153. #define APR_HAVE_IO_H           0
  154. #define APR_HAVE_LIMITS_H       0
  155. #define APR_HAVE_NETDB_H        0
  156. #define APR_HAVE_NETINET_IN_H   0
  157. #define APR_HAVE_NETINET_TCP_H  0
  158. #define APR_HAVE_PTHREAD_H      0
  159. #define APR_HAVE_SIGNAL_H       0
  160. #define APR_HAVE_STDARG_H       0
  161. #define APR_HAVE_STDINT_H       0
  162. #define APR_HAVE_STDIO_H        1
  163. #define APR_HAVE_STDLIB_H       1
  164. #define APR_HAVE_STRING_H       1
  165. #define APR_HAVE_STRINGS_H      0
  166. #define APR_HAVE_SYS_SENDFILE_H 0
  167. #define APR_HAVE_SYS_SIGNAL_H   0
  168. #define APR_HAVE_SYS_SOCKET_H   0
  169. #define APR_HAVE_SYS_SYSLIMITS_H 0
  170. #define APR_HAVE_SYS_TIME_H     0
  171. #define APR_HAVE_SYS_TYPES_H    0
  172. #define APR_HAVE_SYS_UIO_H      0
  173. #define APR_HAVE_SYS_WAIT_H     0
  174. #define APR_HAVE_UNISTD_H       0
  175. #define APR_HAVE_STDDEF_H       0
  176. #define APR_HAVE_PROCESS_H      0
  177. #define APR_HAVE_TIME_H         0
  178. #endif
  179.  
  180. #define APR_USE_FLOCK_SERIALIZE           0 
  181. #define APR_USE_SYSVSEM_SERIALIZE         0
  182. #define APR_USE_FCNTL_SERIALIZE           0
  183. #define APR_USE_PROC_PTHREAD_SERIALIZE    0 
  184. #define APR_USE_PTHREAD_SERIALIZE         0 
  185.  
  186. #define APR_HAS_FLOCK_SERIALIZE           0
  187. #define APR_HAS_SYSVSEM_SERIALIZE         0
  188. #define APR_HAS_FCNTL_SERIALIZE           0
  189. #define APR_HAS_PROC_PTHREAD_SERIALIZE    0
  190. #define APR_HAS_RWLOCK_SERIALIZE          0
  191.  
  192. #define APR_HAS_LOCK_CREATE_NP            0
  193.  
  194. #define APR_PROCESS_LOCK_IS_GLOBAL        0
  195.  
  196. #define APR_USES_ANONYMOUS_SHM            0
  197. #define APR_USES_FILEBASED_SHM            0
  198. #define APR_USES_KEYBASED_SHM             0
  199.  
  200. #define APR_FILE_BASED_SHM      0
  201. #define APR_MEM_BASED_SHM       0
  202.  
  203. #define APR_HAVE_CORKABLE_TCP   0
  204. #define APR_HAVE_GETRLIMIT      0
  205. #define APR_HAVE_ICONV          0
  206. #define APR_HAVE_IN_ADDR        1
  207. #define APR_HAVE_INET_ADDR      1
  208. #define APR_HAVE_INET_NETWORK   0
  209. #define APR_HAVE_IPV6           0
  210. #define APR_HAVE_MEMMOVE        1
  211. #define APR_HAVE_SETRLIMIT      0
  212. #define APR_HAVE_SIGACTION      0
  213. #define APR_HAVE_SIGSUSPEND     0
  214. #define APR_HAVE_SIGWAIT        0
  215. #define APR_HAVE_STRCASECMP     0
  216. #define APR_HAVE_STRDUP         1
  217. #define APR_HAVE_STRNCASECMP    0
  218. #define APR_HAVE_STRSTR         1
  219. #define APR_HAVE_MEMCHR         1
  220. #define APR_HAVE_STRUCT_RLIMIT  0
  221. #define APR_HAVE_UNION_SEMUN    0
  222. #define APR_HAVE_SCTP           0
  223.  
  224. #ifndef _WIN32_WCE
  225. #define APR_HAVE_STRICMP        1
  226. #define APR_HAVE_STRNICMP       1
  227. #else
  228. #define APR_HAVE_STRICMP        0
  229. #define APR_HAVE_STRNICMP       0
  230. #endif
  231.  
  232. /** @} */
  233.  
  234. /* We don't include our conditional headers within the doxyblocks 
  235.  * or the extern "C" namespace 
  236.  */
  237.  
  238. #if APR_HAVE_STDLIB_H
  239. #include <stdlib.h>
  240. #endif
  241. #if APR_HAVE_STDIO_H
  242. #include <stdio.h>
  243. #endif
  244. #if APR_HAVE_SYS_TYPES_H
  245. #include <sys/types.h>
  246. #endif
  247. #if APR_HAVE_STDDEF_H
  248. #include <stddef.h>
  249. #endif
  250. #if APR_HAVE_TIME_H
  251. #include <time.h>
  252. #endif
  253. #if APR_HAVE_PROCESS_H
  254. #include <process.h>
  255. #endif
  256. #if APR_HAVE_IPV6
  257. #include <ws2tcpip.h>
  258. #endif
  259.  
  260. #ifdef __cplusplus
  261. extern "C" {
  262. #endif
  263.  
  264. /**
  265.  * @addtogroup apr_platform
  266.  * @ingroup APR 
  267.  * @{
  268.  */
  269.  
  270. /*  APR Feature Macros */
  271. #define APR_HAS_SHARED_MEMORY     1
  272. #define APR_HAS_THREADS           1
  273. #define APR_HAS_MMAP              1
  274. #define APR_HAS_FORK              0
  275. #define APR_HAS_RANDOM            1
  276. #define APR_HAS_OTHER_CHILD       1
  277. #define APR_HAS_DSO               1
  278. #define APR_HAS_SO_ACCEPTFILTER   0
  279. #define APR_HAS_UNICODE_FS        1
  280. #define APR_HAS_PROC_INVOKED      1
  281. #ifndef _WIN32_WCE
  282. #define APR_HAS_SENDFILE          1
  283. #define APR_HAS_USER              1
  284. #define APR_HAS_LARGE_FILES       1
  285. #define APR_HAS_XTHREAD_FILES     1
  286. #else
  287. #define APR_HAS_SENDFILE          0
  288. #define APR_HAS_USER              0
  289. #define APR_HAS_LARGE_FILES       0
  290. #define APR_HAS_XTHREAD_FILES     0
  291. #endif
  292. #define APR_HAS_OS_UUID           1
  293.  
  294. /* Win32 cannot poll [just yet] on files/pipes.
  295.  */
  296. #define APR_FILES_AS_SOCKETS      0
  297.  
  298. /* Not all platforms have a real INADDR_NONE.  This macro replaces INADDR_NONE
  299.  * on all platforms.
  300.  */
  301. #define APR_INADDR_NONE           INADDR_NONE
  302.  
  303. /* This macro indicates whether or not EBCDIC is the native character set.
  304.  */
  305. #define APR_CHARSET_EBCDIC        0
  306.  
  307. /* Is the TCP_NODELAY socket option inherited from listening sockets?
  308.  */
  309. #define APR_TCP_NODELAY_INHERITED 1
  310.  
  311. /* Is the O_NONBLOCK flag inherited from listening sockets?
  312.  */
  313. #define APR_O_NONBLOCK_INHERITED  1
  314.  
  315. /* Typedefs that APR needs. */
  316.  
  317. typedef  unsigned char     apr_byte_t;
  318.  
  319. typedef  short             apr_int16_t;
  320. typedef  unsigned short    apr_uint16_t;
  321.                                                
  322. typedef  int               apr_int32_t;
  323. typedef  unsigned int      apr_uint32_t;
  324.                                                
  325. typedef  __int64           apr_int64_t;
  326. typedef  unsigned __int64  apr_uint64_t;
  327.  
  328. typedef  size_t      apr_size_t;
  329. #if APR_HAVE_STDDEF_H
  330. typedef  ptrdiff_t   apr_ssize_t;
  331. #else
  332. typedef  int         apr_ssize_t;
  333. #endif
  334. #if APR_HAS_LARGE_FILES
  335. typedef  __int64     apr_off_t;
  336. #else
  337. typedef  int         apr_off_t;
  338. #endif
  339. typedef  int         apr_socklen_t;
  340.  
  341. #ifdef WIN64
  342. #define APR_SIZEOF_VOIDP   8
  343. #else
  344. #define APR_SIZEOF_VOIDP   4
  345. #endif
  346.  
  347. /* XXX These simply don't belong here, perhaps in apr_portable.h
  348.  * based on some APR_HAVE_PID/GID/UID?
  349.  */
  350. typedef  int         pid_t;
  351. typedef  int         uid_t;
  352. typedef  int         gid_t;
  353.  
  354. /* Mechanisms to properly type numeric literals */
  355.  
  356. #define APR_INT64_C(val) (val##i64)
  357.  
  358.  
  359. #if APR_HAVE_IPV6
  360.  
  361. /* Appears in later flavors, not the originals. */
  362. #ifndef in_addr6
  363. #define  in6_addr    in_addr6
  364. #endif
  365.  
  366. #ifndef WS2TCPIP_INLINE
  367. #define IN6_IS_ADDR_V4MAPPED(a) \
  368.     (   (*(const apr_uint64_t *)(const void *)(&(a)->s6_addr[0]) == 0) \
  369.      && (*(const apr_uint32_t *)(const void *)(&(a)->s6_addr[8]) == ntohl(0x0000ffff)))
  370. #endif
  371.  
  372. #endif /* APR_HAS_IPV6 */
  373.  
  374. /* Definitions that APR programs need to work properly. */
  375.  
  376. /** 
  377.  * Thread callbacks from APR functions must be declared with APR_THREAD_FUNC, 
  378.  * so that they follow the platform's calling convention.
  379.  * @example
  380.  */
  381. /** void* APR_THREAD_FUNC my_thread_entry_fn(apr_thread_t *thd, void *data);
  382.  */
  383. #define APR_THREAD_FUNC  __stdcall
  384.  
  385.  
  386. #if defined(DOXYGEN) || !defined(WIN32)
  387.  
  388. /**
  389.  * The public APR functions are declared with APR_DECLARE(), so they may
  390.  * use the most appropriate calling convention.  Public APR functions with 
  391.  * variable arguments must use APR_DECLARE_NONSTD().
  392.  *
  393.  * @remark Both the declaration and implementations must use the same macro.
  394.  * @example
  395.  */
  396. /** APR_DECLARE(rettype) apr_func(args)
  397.  * @see APR_DECLARE_NONSTD @see APR_DECLARE_DATA
  398.  * @remark Note that when APR compiles the library itself, it passes the 
  399.  * symbol -DAPR_DECLARE_EXPORT to the compiler on some platforms (e.g. Win32) 
  400.  * to export public symbols from the dynamic library build.\n
  401.  * The user must define the APR_DECLARE_STATIC when compiling to target
  402.  * the static APR library on some platforms (e.g. Win32.)  The public symbols 
  403.  * are neither exported nor imported when APR_DECLARE_STATIC is defined.\n
  404.  * By default, compiling an application and including the APR public
  405.  * headers, without defining APR_DECLARE_STATIC, will prepare the code to be
  406.  * linked to the dynamic library.
  407.  */
  408. #define APR_DECLARE(type)            type 
  409.  
  410. /**
  411.  * The public APR functions using variable arguments are declared with 
  412.  * APR_DECLARE_NONSTD(), as they must follow the C language calling convention.
  413.  * @see APR_DECLARE @see APR_DECLARE_DATA
  414.  * @remark Both the declaration and implementations must use the same macro.
  415.  * @example
  416.  */
  417. /** APR_DECLARE_NONSTD(rettype) apr_func(args, ...);
  418.  */
  419. #define APR_DECLARE_NONSTD(type)     type
  420.  
  421. /**
  422.  * The public APR variables are declared with AP_MODULE_DECLARE_DATA.
  423.  * This assures the appropriate indirection is invoked at compile time.
  424.  * @see APR_DECLARE @see APR_DECLARE_NONSTD
  425.  * @remark Note that the declaration and implementations use different forms,
  426.  * but both must include the macro.
  427.  * @example
  428.  */
  429. /** extern APR_DECLARE_DATA type apr_variable;\n
  430.  * APR_DECLARE_DATA type apr_variable = value;
  431.  */
  432. #define APR_DECLARE_DATA
  433.  
  434. #elif defined(APR_DECLARE_STATIC)
  435. #define APR_DECLARE(type)            type __stdcall
  436. #define APR_DECLARE_NONSTD(type)     type
  437. #define APR_DECLARE_DATA
  438. #elif defined(APR_DECLARE_EXPORT)
  439. #define APR_DECLARE(type)            __declspec(dllexport) type __stdcall
  440. #define APR_DECLARE_NONSTD(type)     __declspec(dllexport) type
  441. #define APR_DECLARE_DATA             __declspec(dllexport)
  442. #else
  443. #define APR_DECLARE(type)            __declspec(dllimport) type __stdcall
  444. #define APR_DECLARE_NONSTD(type)     __declspec(dllimport) type
  445. #define APR_DECLARE_DATA             __declspec(dllimport)
  446. #endif
  447.  
  448. #ifdef WIN64
  449. #define APR_SSIZE_T_FMT          "I64d"
  450. #define APR_SIZE_T_FMT           "I64d"
  451. #else
  452. #define APR_SSIZE_T_FMT          "d"
  453. #define APR_SIZE_T_FMT           "d"
  454. #endif
  455.  
  456. #if APR_HAS_LARGE_FILES
  457. #define APR_OFF_T_FMT            "I64d"
  458. #else
  459. #define APR_OFF_T_FMT            "d"
  460. #endif
  461.  
  462. #define APR_PID_T_FMT            "d"
  463.  
  464. #define APR_INT64_T_FMT          "I64d"
  465. #define APR_INT64_T_FMT_LEN      4
  466. #define APR_UINT64_T_FMT         "I64u"
  467. #define APR_UINT64_T_FMT_LEN     4
  468. #define APR_UINT64_T_HEX_FMT     "I64x"
  469. #define APR_UINT64_T_HEX_FMT_LEN (sizeof(APR_UINT64_T_HEX_FMT) - 1)
  470.  
  471. /* Deal with atoi64 variables ... these should move to apr_private.h */
  472. /* MSVC 7.0 introduced _strtoui64 */
  473. #if _MSC_VER >= 1300 && _INTEGRAL_MAX_BITS >= 64
  474. #define APR_HAVE_INT64_STRFN  1
  475. #define APR_INT64_STRFN          _strtoui64
  476. #else
  477. #define APR_HAVE_INT64_STRFN  0
  478. #define APR_INT64_STRFN          undef
  479. #endif
  480.  
  481. /* Local machine definition for console and log output. */
  482. #define APR_EOL_STR              "\r\n"
  483.  
  484. /* No difference between PROC and GLOBAL mutex */
  485. #define APR_PROC_MUTEX_IS_GLOBAL      1
  486.  
  487. typedef int apr_wait_t;
  488.  
  489. /* struct iovec is needed to emulate Unix writev */
  490. struct iovec {
  491.     char*      iov_base;
  492.     apr_size_t iov_len;
  493. };
  494.  
  495. /* Nasty Win32 .h ommissions we really need */
  496. #define STDIN_FILENO  0
  497. #define STDOUT_FILENO 1
  498. #define STDERR_FILENO 2
  499.  
  500. #if APR_HAS_UNICODE_FS
  501. /* An arbitrary size that is digestable. True max is a bit less than 32000 */
  502. #define APR_PATH_MAX 8192
  503. #else /* !APR_HAS_UNICODE_FS */
  504. #define APR_PATH_MAX MAX_PATH
  505. #endif
  506.  
  507. /** @} */
  508.  
  509. #ifdef __cplusplus
  510. }
  511. #endif
  512.  
  513. /* Done with badly written headers
  514.  */
  515. #if defined(_MSC_VER) && _MSC_VER >= 1200
  516. #pragma warning(pop)
  517. #endif
  518.  
  519. #endif /* WIN32 */
  520.  
  521. #endif /* APR_H */
  522.