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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: machine.h,v 1.5.20.1 2004/07/09 01:56:17 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. /*-----------------------------------------------------------------------------
  50.  *  machine.h
  51.  *
  52.  *  NAME 
  53.  *   Machine-dependent definitions.
  54.  *   WIN16
  55.  *   __WINDOWS_386__, VXD
  56.  *   FLAT_OS
  57.  *   _NTWIN
  58.  *   _OS2
  59.  *
  60.  *  SYNOPSIS
  61.  *    #include "machine.h"
  62.  *     ...
  63.  *
  64.  *  DESCRIPTION   
  65.  *
  66.  -----------------------------------------------------------------------------*/ 
  67. #ifndef _MACHINE_H_
  68. #define _MACHINE_H_
  69. #ifndef _OS_H_
  70. #include "hxtypes.h"
  71. #include "os.h" //We need it so can tell ifdef WIN16
  72. #endif
  73. #define VvDELETE(OBJ) if (OBJ) { delete(OBJ); OBJ=0; }
  74. // define the VvAssert() macro as appropriate for each platform
  75. #ifdef _DEBUG
  76. #ifdef FOR_MAC
  77. #include <Assert.h>
  78. #define VvAssert(expr) Assert_(expr)
  79. #else // other platforms go here
  80. #define VvAssert(expr)
  81. #endif
  82. #else // #ifdef _DEBUG
  83. #define VvAssert(expr)
  84. #endif // #ifdef _DEBUG
  85. #ifndef WIN32
  86. #define mmioFOURCC(a,b,c,d) (((U32)((U8)(d) << 24)) | ((U8)(c) << 16) | ((U8)(b) << 8) | ((U8)(a)))
  87. #endif
  88. #ifdef FOR_MAC
  89. #ifdef _MAC_MACHO
  90. #define PATH_SEPARATOR "/"
  91. #else
  92. #define PATH_SEPARATOR ":"
  93. #endif
  94. #endif
  95. #ifdef FOR_WINDOWS
  96. #define PATH_SEPARATOR "\"
  97. #endif
  98. #ifdef FOR_UNIX
  99. #define PATH_SEPARATOR "/"
  100. #endif
  101. #ifdef FOR_MAC
  102. // Define basic Windows datatypes here
  103. //#define BOOL Boolean
  104. #include "../../../common/include/hxtypes.h"
  105. typedef unsigned char * LPBYTE;
  106. #endif
  107. #ifdef FOR_UNIX
  108. // Define basic Windows datatypes here
  109. #define BOOL unsigned char
  110. #ifndef NULL
  111. #define NULL (0L)
  112. #endif
  113. #ifndef pascal
  114. #define pascal
  115. #endif
  116. #endif
  117. /* numeric types */
  118. typedef signed char S8;
  119. typedef unsigned char U8;
  120. typedef short int S16;
  121. typedef unsigned short int U16;
  122. typedef long int S32;
  123. typedef unsigned long int U32;
  124. typedef float FLOAT;
  125. #ifdef FOR_MAC
  126. typedef unsigned short WORD;
  127. //typedef S8 BYTE;
  128. typedef unsigned long DWORD;
  129. typedef S32 LONG;
  130. //typedef unsigned long TIME32;
  131. #endif
  132. typedef S16 Word16;     // used by G723 audio codec
  133. typedef S32 Word32;     // used by G723 audio codec
  134. /* graphic types */
  135. typedef U8       PIXEL; 
  136. /* pointer types (here lie dragons!) */ 
  137. /* Boolean types */
  138. typedef U16 B16;
  139. #define NATURAL_ALIGN 16
  140. #define ALIGN(len,align) ((len)+(align)-1) & (~(align-1)) 
  141. /* Metric types */
  142. typedef U32 TIME32;         /* absolute time */
  143. typedef S32 INTERVAL32;     /* interval time */
  144.                             
  145. #if defined _WIN32
  146. #define FLAT_OS
  147. #elif defined FOR_MAC
  148. #define FLAT_OS
  149. #elif defined FOR_UNIX
  150. #define FLAT_OS
  151. #else
  152.         #HEY, unknown environment type
  153. #endif
  154. #if defined(FOR_MAC) || defined(FOR_UNIX)
  155. typedef struct tagBITMAPINFOHEADER{
  156.         DWORD      biSize;
  157.         LONG       biWidth;
  158.         LONG       biHeight;
  159.         WORD       biPlanes;
  160.         WORD       biBitCount;
  161.         DWORD      biCompression;
  162.         DWORD      biSizeImage;
  163.         LONG       biXPelsPerMeter;
  164.         LONG       biYPelsPerMeter;
  165.         DWORD      biClrUsed;
  166.         DWORD      biClrImportant;
  167. } BITMAPINFOHEADER, *LPBITMAPINFOHEADER, *PBITMAPINFOHEADER;
  168. typedef struct tagRGBQUAD {
  169.         BYTE    rgbBlue;
  170.         BYTE    rgbGreen;
  171.         BYTE    rgbRed;
  172.         BYTE    rgbReserved;
  173. } RGBQUAD;
  174. typedef RGBQUAD *LPRGBQUAD;
  175. #endif // MAC / Unix
  176. #endif // _MACHINE_H_