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 / F277234_apr_support.h < prev    next >
C/C++ Source or Header  |  2004-02-13  |  1KB  |  51 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. #ifndef APR_SUPPORT_H
  17. #define APR_SUPPORT_H
  18.  
  19. /**
  20.  * @file apr_support.h
  21.  * @brief APR Support functions
  22.  */
  23.  
  24. #include "apr.h"
  25. #include "apr_network_io.h"
  26. #include "apr_file_io.h"
  27.  
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif /* __cplusplus */
  31.  
  32. /**
  33.  * @defgroup apr_support Internal APR support functions
  34.  * @ingroup APR 
  35.  * @{
  36.  */
  37.  
  38. /**
  39.  * Wait for IO to occur or timeout.
  40.  */
  41. apr_status_t apr_wait_for_io_or_timeout(apr_file_t *f, apr_socket_t *s,
  42.                                         int for_read);
  43.  
  44. /** @} */
  45.  
  46. #ifdef __cplusplus
  47. }
  48. #endif
  49.  
  50. #endif  /* ! APR_SUPPORT_H */
  51.