home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / apache / apache_2.0.45-win32-x86-no_ssl.msi / Data.Cab / F232256_apr.h < prev    next >
C/C++ Source or Header  |  2003-04-01  |  17KB  |  550 lines

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