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

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 HLXSYS_TIME_H
  36. #define HLXSYS_TIME_H
  37. #if defined(_SYMBIAN)
  38. # include <sys/time.h>
  39. #endif 
  40. #if !defined(WIN32_PLATFORM_PSPC) && !defined(_OPENWAVE)
  41. #include <time.h>
  42. #endif /* !defined(WIN32_PLATFORM_PSPC) && !defined(_OPENWAVE) */
  43. #if defined(_OPENWAVE)
  44. #include "platform/openwave/hx_op_timeutil.h"
  45. #endif
  46. #ifdef __cplusplus
  47. extern "C" {
  48. #endif /* __cplusplus */
  49. /*******************************
  50.  * Types
  51.  */
  52. #if defined(_OPENWAVE)
  53. #define NO_TM_ISDST
  54. typedef U32 time_t;
  55. #define tm op_tm                // XXXSAB any other way for 'struct tm' to
  56.                                 // work in a C-includeable file?
  57. struct timeval {
  58. time_t tv_sec;
  59. time_t tv_usec;
  60. };
  61. #elif defined(WIN32_PLATFORM_PSPC)
  62. #include "hxtypes.h"
  63. #include <windows.h>
  64. struct tm {
  65.     int tm_sec;
  66.     int tm_min;
  67.     int tm_hour;
  68.     int tm_mday;
  69.     int tm_mon;
  70.     int tm_year;
  71.     int tm_wday;
  72.     int tm_yday;
  73.     int tm_isdst;
  74. };
  75. #define timezone _timezone
  76. extern long _timezone;
  77. #endif /* defined(WIN32_PLATFORM_PSPC) */
  78. /*******************************
  79.  * Helix declarations
  80.  */
  81. long __helix_time(long *t);
  82. struct tm* __helix_localtime(long* timep);
  83. void __helix_tzset();
  84. long __helix_mktime(struct tm* tm);
  85. struct tm *__helix_gmtime(long *timep);
  86. int __helix_gettimeofday(struct timeval *tv, void *tz);
  87. char * __helix_ctime(long *timer);
  88. #if defined(_WINCE)
  89. char * __helix_asctime (struct tm *tm);
  90. /*******************************
  91.  * platform specifics declarations
  92.  */
  93. _inline char * ctime(time_t *timp)
  94. {
  95.     return __helix_ctime((long*)timp);
  96. }
  97. _inline char * asctime (struct tm *tm)
  98. {
  99.     return __helix_asctime(tm);
  100. }
  101. _inline
  102. void _tzset()
  103. {
  104.     __helix_tzset();
  105. }
  106. _inline
  107. struct tm* localtime(time_t* timep)
  108. {
  109.     return __helix_localtime((long *)timep);
  110. }
  111. _inline
  112. long time(time_t *t) 
  113. {
  114.     return __helix_time((long *)t);
  115. }
  116. _inline
  117. long mktime(struct tm* tm)
  118. {
  119.     return __helix_mktime(tm);
  120. }
  121. _inline
  122. struct tm* gmtime(time_t *timep)
  123. {
  124.     return __helix_gmtime((long*)timep);
  125. }
  126. #elif defined(_OPENWAVE)
  127. #define time(t) __helix_time(t)
  128. #define ctime(t) __helix_ctime(t)
  129. #define gmtime(t) __helix_gmtime(t)
  130. #define localtime(t) __helix_gmtime(t) // XXXSAB is there a _local_ time call?
  131. #define mktime(tm) __helix_mktime(tm)
  132. #define gettimeofday __helix_gettimeofday
  133. #define strftime op_strftime
  134. #endif /* defined(WIN32_PLATFORM_PSPC) */
  135. #ifdef __cplusplus
  136. };
  137. #endif /* __cplusplus */
  138. #endif /* HLXSYS_TIME_H */