SDL_types.h
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*
  2.     SDL - Simple DirectMedia Layer
  3.     Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga
  4.     This library is free software; you can redistribute it and/or
  5.     modify it under the terms of the GNU Library General Public
  6.     License as published by the Free Software Foundation; either
  7.     version 2 of the License, or (at your option) any later version.
  8.     This library is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  11.     Library General Public License for more details.
  12.     You should have received a copy of the GNU Library General Public
  13.     License along with this library; if not, write to the Free
  14.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  15.     Sam Lantinga
  16.     slouken@libsdl.org
  17. */
  18. #ifdef SAVE_RCSID
  19. static char rcsid =
  20.  "@(#) $Id: SDL_types.h,v 1.4 2002/04/22 21:38:01 wmay Exp $";
  21. #endif
  22. /* General data types used by the SDL library */
  23. #ifndef _SDL_types_h
  24. #define _SDL_types_h
  25. /* The number of elements in a table */
  26. #define SDL_TABLESIZE(table) (sizeof(table)/sizeof(table[0]))
  27. /* Basic data types */
  28. typedef enum {
  29. SDL_FALSE = 0,
  30. SDL_TRUE  = 1
  31. } SDL_bool;
  32. typedef unsigned char Uint8;
  33. typedef signed char Sint8;
  34. typedef unsigned short Uint16;
  35. typedef signed short Sint16;
  36. typedef unsigned int Uint32;
  37. typedef signed int Sint32;
  38. /* Figure out how to support 64-bit datatypes */
  39. #if !defined(__STRICT_ANSI__)
  40. #if defined(__GNUC__) || defined(__MWERKS__) || defined(__SUNPRO_C)
  41. #define SDL_HAS_64BIT_TYPE long long
  42. #elif defined(_MSC_VER) /* VC++ */
  43. #define SDL_HAS_64BIT_TYPE __int64
  44. #endif
  45. #endif /* !__STRICT_ANSI__ */
  46. /* The 64-bit type isn't available on EPOC/Symbian OS */
  47. #ifdef __SYMBIAN32__
  48. #undef SDL_HAS_64BIT_TYPE
  49. #endif
  50. /* The 64-bit datatype isn't supported on all platforms */
  51. #ifdef SDL_HAS_64BIT_TYPE
  52. typedef unsigned SDL_HAS_64BIT_TYPE Uint64;
  53. typedef SDL_HAS_64BIT_TYPE Sint64;
  54. #else
  55. /* This is really just a hack to prevent the compiler from complaining */
  56. typedef struct {
  57. Uint32 hi;
  58. Uint32 lo;
  59. } Uint64, Sint64;
  60. #endif
  61. /* Make sure the types really have the right sizes */
  62. #define SDL_COMPILE_TIME_ASSERT(name, x)               
  63.        typedef int SDL_dummy_ ## name[(x) * 2 - 1]
  64. SDL_COMPILE_TIME_ASSERT(uint8, sizeof(Uint8) == 1);
  65. SDL_COMPILE_TIME_ASSERT(sint8, sizeof(Sint8) == 1);
  66. SDL_COMPILE_TIME_ASSERT(uint16, sizeof(Uint16) == 2);
  67. SDL_COMPILE_TIME_ASSERT(sint16, sizeof(Sint16) == 2);
  68. SDL_COMPILE_TIME_ASSERT(uint32, sizeof(Uint32) == 4);
  69. SDL_COMPILE_TIME_ASSERT(sint32, sizeof(Sint32) == 4);
  70. SDL_COMPILE_TIME_ASSERT(uint64, sizeof(Uint64) == 8);
  71. SDL_COMPILE_TIME_ASSERT(sint64, sizeof(Sint64) == 8);
  72. #undef SDL_COMPILE_TIME_ASSERT
  73. /* General keyboard/mouse state definitions */
  74. enum { SDL_PRESSED = 0x01, SDL_RELEASED = 0x00 };
  75. #endif