hxtick.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _HXTICK_H_
  36. #define _HXTICK_H_
  37. #ifdef _WIN16
  38. #include <windows.h>
  39. #include <mmsystem.h>
  40. #elif defined(_WIN32)
  41. #ifndef WIN32_LEAN_AND_MEAN
  42. #define WIN32_LEAN_AND_MEAN
  43. #include <windows.h>
  44. #undef WIN32_LEAN_AND_MEAN
  45. #else
  46. #include <windows.h>
  47. #endif
  48. #endif
  49. #include "hxtypes.h"
  50. /* We have added a HX_GET_BETTERTICKCOUNT which uses highly accurate timers
  51.  * when the hardware and OS will allow and defaults back to the timers used
  52.  * by HX_GET_TICKCOUNT when they are not available. Code which requires
  53.  * accurate timing (i.e. better than 10-20ms) should probably use the
  54.  * HX_GET_BETTERTICKCOUNT call. The wraparound and precision of both calls
  55.  * should be the same - HX_GET_BETTERTICKCOUNT should always be more ACCURATE.
  56.  */
  57. #if defined(_MACINTOSH) || defined(_UNIX)
  58. #ifdef __cplusplus
  59. extern "C"
  60. {
  61. #endif /* __cplusplus */
  62. ULONG32 GetTickCount(void);
  63. #define HX_GET_TICKCOUNT() GetTickCount()
  64. #define HX_GET_BETTERTICKCOUNT() GetTickCount()
  65. #ifdef __cplusplus
  66. }
  67. #endif /* __cplusplus */
  68. #elif defined(_SYMBIAN)
  69. # ifdef __cplusplus
  70. extern "C"
  71. {
  72. # endif /* __cplusplus */
  73. ULONG32 GetTickCount(void);
  74. # define HX_GET_TICKCOUNT() GetTickCount()
  75. # define HX_GET_BETTERTICKCOUNT() GetTickCount()
  76. # ifdef __cplusplus
  77. }
  78. # endif /* __cplusplus */ /* SYMBIAN */
  79. #elif defined(_OPENWAVE)
  80. # ifdef __cplusplus
  81. extern "C"
  82. {
  83. # endif /* __cplusplus */
  84. ULONG32 GetTickCount(void);
  85. #define HX_GET_TICKCOUNT() GetTickCount()
  86. #define HX_GET_BETTERTICKCOUNT() GetTickCount()
  87. # ifdef __cplusplus
  88. }
  89. # endif /* __cplusplus */ /* SYMBIAN */
  90. #elif defined(_WIN32)
  91. #define HX_GET_TICKCOUNT() GetTickCount()
  92. #ifdef __cplusplus
  93. extern "C"
  94. {
  95. #endif /* __cplusplus */
  96. ULONG32 GetBetterTickCount();
  97. // Returns a ms system tick with double precision accuracy.
  98. // Wraps at 2^32 -1 milliseconds.
  99. double GetMSTickDouble32();
  100. #ifdef __cplusplus
  101. }
  102. #endif /* __cplusplus */
  103. /*
  104.  * In 32bit Windows we have a HX_GET_BETTERTICKCOUNT()
  105.  * which uses the queryPerformance interface for highly accurate times.
  106.  * XXXKB: This implementation is now thread safe;
  107.  */
  108. #define HX_GET_BETTERTICKCOUNT() GetBetterTickCount()
  109. /* WINDOWS DEFAULT */
  110. #elif defined(_WINDOWS)
  111. #define HX_GET_TICKCOUNT() GetTickCount()
  112. #define HX_GET_BETTERTICKCOUNT() GetTickCount()
  113. #else
  114. #error hxtick.h::Undefined platform!
  115. #endif // #ifdef __MWERKS__
  116. #define MILLISECS_PER_SECOND ((ULONG32)1000)
  117. #define CALCULATE_ELAPSED_TICKS(t1,t2) ((t2) - (t1))
  118. // use this to measure a result from calculate_elapsed to ensure that
  119. // time didn't go backwards
  120. #define SOME_VERY_LARGE_VALUE  86400000 /* 1 day */ 
  121. // Timestamp comparisons
  122. #define IsTimeGreater(a, b)
  123.     (((LONG32) ((a) - (b))) > 0)
  124. #define IsTimeGreaterOrEqual(a, b)
  125.     (((LONG32) ((a) - (b))) >= 0)
  126. #define IsTimeLess(a, b)
  127.     (((LONG32) ((a) - (b))) < 0)
  128. #define IsTimeLessOrEqual(a, b)
  129.     (((LONG32) ((a) - (b))) <= 0)
  130. #endif //_HXTICK_H_