hxbastsd.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:8k
源码类别:

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: hxbastsd.h,v 1.2.50.3 2004/07/09 01:45:08 hubbe Exp $
  3.  * 
  4.  * Portions Copyright (c) 1995-2004 RealNetworks, Inc. All Rights Reserved.
  5.  * 
  6.  * The contents of this file, and the files included with this file,
  7.  * are subject to the current version of the RealNetworks Public
  8.  * Source License (the "RPSL") available at
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed
  10.  * the file under the current version of the RealNetworks Community
  11.  * Source License (the "RCSL") available at
  12.  * http://www.helixcommunity.org/content/rcsl, in which case the RCSL
  13.  * will apply. You may also obtain the license terms directly from
  14.  * RealNetworks.  You may not use this file except in compliance with
  15.  * the RPSL or, if you have a valid RCSL with RealNetworks applicable
  16.  * to this file, the RCSL.  Please see the applicable RPSL or RCSL for
  17.  * the rights, obligations and limitations governing use of the
  18.  * contents of the file.
  19.  * 
  20.  * Alternatively, the contents of this file may be used under the
  21.  * terms of the GNU General Public License Version 2 or later (the
  22.  * "GPL") in which case the provisions of the GPL are applicable
  23.  * instead of those above. If you wish to allow use of your version of
  24.  * this file only under the terms of the GPL, and not to allow others
  25.  * to use your version of this file under the terms of either the RPSL
  26.  * or RCSL, indicate your decision by deleting the provisions above
  27.  * and replace them with the notice and other provisions required by
  28.  * the GPL. If you do not delete the provisions above, a recipient may
  29.  * use your version of this file under the terms of any one of the
  30.  * RPSL, the RCSL or the GPL.
  31.  * 
  32.  * This file is part of the Helix DNA Technology. RealNetworks is the
  33.  * developer of the Original Code and owns the copyrights in the
  34.  * portions it created.
  35.  * 
  36.  * This file, and the files included with this file, is distributed
  37.  * and made available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY
  38.  * KIND, EITHER EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS
  39.  * ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES
  40.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET
  41.  * ENJOYMENT OR NON-INFRINGEMENT.
  42.  * 
  43.  * Technology Compatibility Kit Test Suite(s) Location:
  44.  *    http://www.helixcommunity.org/content/tck
  45.  * 
  46.  * Contributor(s):
  47.  * 
  48.  * ***** END LICENSE BLOCK ***** */
  49. #if !(defined(_MSC_VER) && (_MSC_VER > 1100))
  50. #error hxbastsd.h is only intended for use with Microsoft VC++ 6.0 or higher
  51. #endif
  52. #ifndef _HXBASETSD_H_
  53. #define _HXBASETSD_H_
  54. #ifndef _BASETSD_H_
  55. #define _BASETSD_H_
  56. #endif
  57. #if _MSC_VER > 1000
  58. #pragma once
  59. #endif
  60. #ifdef __cplusplus
  61. extern "C" {
  62. #endif
  63. typedef int *PLONG32;
  64. typedef int *PINT32;
  65. typedef unsigned int *PULONG32;
  66. typedef unsigned int DWORD32, *PDWORD32;
  67. typedef unsigned int *PUINT32;
  68. typedef __int64 SHANDLE_PTR;
  69. #if !defined(_W64)
  70. #if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300
  71. #define _W64 __w64
  72. #else
  73. #define _W64
  74. #endif
  75. #endif
  76. #if ( 501 < __midl )
  77.     typedef [public] __int3264 INT_PTR, *PINT_PTR;
  78.     typedef [public] unsigned __int3264 UINT_PTR, *PUINT_PTR;
  79.     typedef [public] __int3264 LONG_PTR, *PLONG_PTR;
  80.     typedef [public] unsigned __int3264 ULONG_PTR, *PULONG_PTR;
  81. #else  // midl64
  82. // old midl and C++ compiler
  83. #if defined(_WIN64)
  84.     typedef __int64 INT_PTR, *PINT_PTR;
  85.     typedef unsigned __int64 UINT_PTR, *PUINT_PTR;
  86.     typedef __int64 LONG_PTR, *PLONG_PTR;
  87.     typedef unsigned __int64 ULONG_PTR, *PULONG_PTR;
  88.     #define __int3264   __int64
  89. #else
  90.     typedef _W64 int INT_PTR, *PINT_PTR;
  91.     typedef _W64 unsigned int UINT_PTR, *PUINT_PTR;
  92.     typedef _W64 long LONG_PTR, *PLONG_PTR;
  93.     typedef _W64 unsigned long ULONG_PTR, *PULONG_PTR;
  94.     #define __int3264   __int32
  95. #endif
  96. #endif // midl64
  97. //
  98. // HALF_PTR is half the size of a pointer it intended for use with
  99. // within strcuture which contain a pointer and two small fields.
  100. // UHALF_PTR is the unsigned variation.
  101. //
  102. #ifdef _WIN64
  103. #define ADDRESS_TAG_BIT 0x40000000000UI64
  104. typedef unsigned __int64 HANDLE_PTR;
  105. typedef unsigned int UHALF_PTR, *PUHALF_PTR;
  106. typedef int HALF_PTR, *PHALF_PTR;
  107. #pragma warning(disable:4311)   // type cast truncation
  108. #if _MSC_VER >= 1200
  109. #pragma warning(push)
  110. #endif
  111. #pragma warning(disable:4305)   // type cast truncation
  112. #if !defined(__midl)
  113. __inline
  114. unsigned long
  115. HandleToUlong(
  116.     const void *h
  117.     )
  118. {
  119.     return((unsigned long) h );
  120. }
  121. __inline
  122. long
  123. HandleToLong(
  124.     const void *h
  125.     )
  126. {
  127.     return((long) h );
  128. }
  129. __inline
  130. void *
  131. LongToHandle(
  132.     const long h
  133.     )
  134. {
  135.     return((void *) (INT_PTR) h );
  136. }
  137. __inline
  138. unsigned long
  139. PtrToUlong(
  140.     const void  *p
  141.     )
  142. {
  143.     return((unsigned long) p );
  144. }
  145. __inline
  146. unsigned int
  147. PtrToUint(
  148.     const void  *p
  149.     )
  150. {
  151.     return((unsigned int) p );
  152. }
  153. __inline
  154. unsigned short
  155. PtrToUshort(
  156.     const void  *p
  157.     )
  158. {
  159.     return((unsigned short) p );
  160. }
  161. __inline
  162. long
  163. PtrToLong(
  164.     const void  *p
  165.     )
  166. {
  167.     return((long) p );
  168. }
  169. __inline
  170. int
  171. PtrToInt(
  172.     const void  *p
  173.     )
  174. {
  175.     return((int) p );
  176. }
  177. __inline
  178. short
  179. PtrToShort(
  180.     const void  *p
  181.     )
  182. {
  183.     return((short) p );
  184. }
  185. __inline
  186. void *
  187. IntToPtr(
  188.     const int i
  189. )
  190. // Caution: IntToPtr() sign-extends the int value.
  191. {
  192.     return( (void *)(INT_PTR)i );
  193. }
  194. __inline
  195. void *
  196. UIntToPtr(
  197.     const unsigned int ui
  198.     )
  199. // Caution: UIntToPtr() zero-extends the unsigned int value.
  200. {
  201.     return( (void *)(UINT_PTR)ui );
  202. }
  203. __inline
  204. void *
  205. LongToPtr(
  206.     const long l
  207.     )
  208. // Caution: LongToPtr() sign-extends the long value.
  209. {
  210.     return( (void *)(LONG_PTR)l );
  211. }
  212. __inline
  213. void *
  214. ULongToPtr(
  215.     const unsigned long ul
  216.     )
  217. // Caution: ULongToPtr() zero-extends the unsigned long value.
  218. {
  219.     return( (void *)(ULONG_PTR)ul );
  220. }
  221. #endif // !_midl
  222. #if _MSC_VER >= 1200
  223. #pragma warning(pop)      // restore 4305
  224. #endif
  225. #pragma warning(3:4311)   // bump 4311 to a level 3
  226. #else  // !_WIN64
  227. #define ADDRESS_TAG_BIT 0x80000000UL
  228. typedef unsigned short UHALF_PTR, *PUHALF_PTR;
  229. typedef short HALF_PTR, *PHALF_PTR;
  230. typedef _W64 unsigned long HANDLE_PTR;
  231. #define HandleToUlong( h ) ((ULONG)(ULONG_PTR)(h) )
  232. #define HandleToLong( h ) ((LONG)(LONG_PTR) (h) )
  233. #define LongToHandle( h) ((HANDLE)(LONG_PTR) (h))
  234. #define PtrToUlong( p ) ((ULONG)(ULONG_PTR) (p) )
  235. #define PtrToLong( p ) ((LONG)(LONG_PTR) (p) )
  236. #define PtrToUint( p ) ((UINT)(UINT_PTR) (p) )
  237. #define PtrToInt( p ) ((INT)(INT_PTR) (p) )
  238. #define PtrToUshort( p ) ((unsigned short)(ULONG_PTR)(p) )
  239. #define PtrToShort( p ) ((short)(LONG_PTR)(p) )
  240. #define IntToPtr( i )    ((VOID *)(INT_PTR)((int)i))
  241. #define UIntToPtr( ui )  ((VOID *)(UINT_PTR)((unsigned int)ui))
  242. #define LongToPtr( l )   ((VOID *)(LONG_PTR)((long)l))
  243. #define ULongToPtr( ul )  ((VOID *)(ULONG_PTR)((unsigned long)ul))
  244. #endif // !_WIN64
  245. #define UlongToPtr(ul) ULongToPtr(ul)
  246. #define UintToPtr(ui) UIntToPtr(ui)
  247. #define MAXUINT_PTR  (~((UINT_PTR)0))
  248. #define MAXINT_PTR   ((INT_PTR)(MAXUINT_PTR >> 1))
  249. #define MININT_PTR   (~MAXINT_PTR)
  250. #define MAXULONG_PTR (~((ULONG_PTR)0))
  251. #define MAXLONG_PTR  ((LONG_PTR)(MAXULONG_PTR >> 1))
  252. #define MINLONG_PTR  (~MAXLONG_PTR)
  253. #define MAXUHALF_PTR ((UHALF_PTR)~0)
  254. #define MAXHALF_PTR  ((HALF_PTR)(MAXUHALF_PTR >> 1))
  255. #define MINHALF_PTR  (~MAXHALF_PTR)
  256. //
  257. // SIZE_T used for counts or ranges which need to span the range of
  258. // of a pointer.  SSIZE_T is the signed variation.
  259. //
  260. typedef ULONG_PTR SIZE_T, *PSIZE_T;
  261. typedef LONG_PTR SSIZE_T, *PSSIZE_T;
  262. //
  263. // Add Windows flavor DWORD_PTR types
  264. //
  265. typedef ULONG_PTR DWORD_PTR, *PDWORD_PTR;
  266. typedef __int64 LONG64, *PLONG64;
  267. typedef __int64 INT64,  *PINT64;
  268. typedef unsigned __int64 ULONG64, *PULONG64;
  269. typedef unsigned __int64 DWORD64, *PDWORD64;
  270. typedef unsigned __int64 UINT64,  *PUINT64;
  271. #ifdef __cplusplus
  272. }
  273. #endif
  274. #endif // _HXBASETSD_H_