ncbi_types.h
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: ncbi_types.h,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/29 16:33:02  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef CONNECT___NCBI_TYPES__H
  10. #define CONNECT___NCBI_TYPES__H
  11. /*  $Id: ncbi_types.h,v 1000.0 2003/10/29 16:33:02 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Anton Lavrentiev
  37.  *
  38.  * File Description:
  39.  *   Special types for core library.
  40.  *
  41.  *********************************
  42.  * Timeout:
  43.  *    struct STimeout
  44.  *
  45.  * Switch:
  46.  *    ESwitch         (on/off/default)
  47.  *
  48.  * Fixed-size size_t and time_t equivalents
  49.  *    TNCBI_Size
  50.  *    TNCBI_Time
  51.  *       these two we need to use when mixing 32/64 bit programs
  52.  *       which make simultaneous access to inter-process communication
  53.  *       data areas, like shared memory segments
  54.  *
  55.  */
  56. /* In the C++ Toolkit, this includes ncbiconf.h and lets us know
  57.  * whether we need to hack around WorkShop's stupidity.
  58.  */
  59. #include <connect/connect_export.h>
  60. #include <stddef.h>
  61. /** @addtogroup UtilityFunc
  62.  *
  63.  * @{
  64.  */
  65. #ifdef __cplusplus
  66. extern "C" {
  67. #endif
  68. /* Timeout structure
  69.  */
  70. typedef struct {
  71.     unsigned int sec;  /* seconds (truncated to the platf.-dep. max. limit) */
  72.     unsigned int usec; /* microseconds (always truncated by mod. 1,000,000) */
  73. } STimeout;
  74. #if defined(__cplusplus)  &&  !defined(NCBI_COMPILER_WORKSHOP)  &&  0
  75. static const STimeout *const kDefaultTimeout  = (const STimeout*)(-1);
  76. static const STimeout *const kInfiniteTimeout = (const STimeout*)( 0);
  77. #else
  78. #  define                    kDefaultTimeout   ((const STimeout*)(-1))
  79. #  define                    kInfiniteTimeout  ((const STimeout*)( 0))
  80. #endif /*__cplusplus*/
  81. /* Aux. enum to set/unset/default various features
  82.  */
  83. typedef enum {
  84.     eOff = 0,
  85.     eOn,
  86.     eDefault
  87. } ESwitch;
  88. /* Fixed size analogs of size_t and time_t (mainly for IPC)
  89.  */
  90. typedef unsigned int TNCBI_Size;
  91. typedef unsigned int TNCBI_Time;
  92. #ifdef __cplusplus
  93. }  /* extern "C" */
  94. #endif
  95. /* @} */
  96. /*
  97.  * ---------------------------------------------------------------------------
  98.  * $Log: ncbi_types.h,v $
  99.  * Revision 1000.0  2003/10/29 16:33:02  gouriano
  100.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R6.9
  101.  *
  102.  * Revision 6.9  2003/08/28 19:28:47  ucko
  103.  * Use macros for kXxxTimeout on all platforms (safer, inasmuch as the C
  104.  * include directory may be first).
  105.  *
  106.  * Revision 6.8  2003/08/28 18:47:25  ucko
  107.  * Go back to previous WorkShop hack, but include connect_export.h (for
  108.  * ncbiconf.h) so that it actually works reliably this time around.
  109.  *
  110.  * Revision 6.7  2003/08/27 12:32:25  ucko
  111.  * Yet another attempt to work around the WorkShop lossage with k*Timeout.
  112.  *
  113.  * Revision 6.6  2003/08/27 02:00:11  ucko
  114.  * Sigh... WorkShop still mishandles kXxxTimeout in some cases, so fall
  115.  * back to making them macros.
  116.  *
  117.  * Revision 6.5  2003/08/26 18:55:13  lavr
  118.  * Added "static" to k...Timeout to make Sun WorkShop compiler happier
  119.  *
  120.  * Revision 6.4  2003/08/25 14:36:26  lavr
  121.  * +kDefaultTimeout, +kInfiniteTimeout
  122.  *
  123.  * Revision 6.3  2003/04/09 19:05:58  siyan
  124.  * Added doxygen support
  125.  *
  126.  * Revision 6.2  2002/09/19 18:05:41  lavr
  127.  * Header file guard macro changed; log moved to end
  128.  *
  129.  * Revision 6.1  2001/06/19 20:15:58  lavr
  130.  * Initial revision
  131.  *
  132.  * ===========================================================================
  133.  */
  134. #endif /* CONNECT___NCBI_TYPES__H */