< prev index next >

src/java.desktop/share/native/libjsound/SoundDefs.h

Print this page
rev 59106 : imported patch client


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #ifndef __SOUNDDEFS_INCLUDED__
  27 #define __SOUNDDEFS_INCLUDED__
  28 
  29 
  30 // types for X_PLATFORM
  31 #define X_WINDOWS       1
  32 #define X_SOLARIS       2
  33 #define X_LINUX         3
  34 #define X_BSD           4
  35 #define X_MACOSX        5
  36 
  37 // **********************************
  38 // Make sure you set X_PLATFORM defines correctly.
  39 // Everything depends upon this flag being setup correctly.
  40 // **********************************
  41 
  42 #if (!defined(X_PLATFORM))
  43 #error "You need to define X_PLATFORM outside of the source. Use the types above."
  44 #endif
  45 
  46 
  47 // following is needed for _LP64
  48 #if ((X_PLATFORM == X_SOLARIS) || (X_PLATFORM == X_LINUX) || (X_PLATFORM == X_MACOSX))
  49 #include <sys/types.h>
  50 #endif
  51 
  52 #if X_PLATFORM == X_WINDOWS
  53 #ifndef WIN32_LEAN_AND_MEAN
  54 #define WIN32_LEAN_AND_MEAN
  55 #endif
  56 #include <windows.h>
  57 #endif /* X_PLATFORM == X_WINDOWS */
  58 
  59 
  60 /*
  61 * These types are defined elsewhere for newer 32/64-bit Windows
  62 * header files, but not on Solaris/Linux (X_PLATFORM != X_WINDOWS)
  63 */
  64 #if (X_PLATFORM != X_WINDOWS)
  65 
  66 typedef unsigned char           UINT8;
  67 typedef char                    INT8;
  68 typedef short                   INT16;


  95 
  96 #ifndef TRUE
  97 #define TRUE    1
  98 #endif
  99 
 100 #ifndef FALSE
 101 #define FALSE   0
 102 #endif
 103 
 104 #undef NULL
 105 #ifndef NULL
 106 #define NULL    0L
 107 #endif
 108 
 109 
 110 
 111 
 112 #if X_PLATFORM == X_WINDOWS
 113 #include <stdlib.h>
 114 #define INLINE          _inline
 115 #endif
 116 
 117 
 118 #if X_PLATFORM == X_SOLARIS
 119 #define INLINE
 120 #endif
 121 
 122 
 123 #if X_PLATFORM == X_LINUX
 124 #define INLINE          inline
 125 #endif
 126 
 127 
 128 #if (X_PLATFORM == X_BSD) || (X_PLATFORM == X_MACOSX)
 129 #define INLINE          inline
 130 #endif
 131 
 132 
 133 #endif  // __SOUNDDEFS_INCLUDED__


  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 #ifndef __SOUNDDEFS_INCLUDED__
  27 #define __SOUNDDEFS_INCLUDED__
  28 
  29 
  30 // types for X_PLATFORM
  31 #define X_WINDOWS       1
  32 #define X_LINUX         2
  33 #define X_BSD           3
  34 #define X_MACOSX        4

  35 
  36 // **********************************
  37 // Make sure you set X_PLATFORM defines correctly.
  38 // Everything depends upon this flag being setup correctly.
  39 // **********************************
  40 
  41 #if (!defined(X_PLATFORM))
  42 #error "You need to define X_PLATFORM outside of the source. Use the types above."
  43 #endif
  44 
  45 
  46 // following is needed for _LP64
  47 #if ((X_PLATFORM == X_LINUX) || (X_PLATFORM == X_MACOSX))
  48 #include <sys/types.h>
  49 #endif
  50 
  51 #if X_PLATFORM == X_WINDOWS
  52 #ifndef WIN32_LEAN_AND_MEAN
  53 #define WIN32_LEAN_AND_MEAN
  54 #endif
  55 #include <windows.h>
  56 #endif /* X_PLATFORM == X_WINDOWS */
  57 
  58 
  59 /*
  60 * These types are defined elsewhere for newer 32/64-bit Windows
  61 * header files, but not on Solaris/Linux (X_PLATFORM != X_WINDOWS)
  62 */
  63 #if (X_PLATFORM != X_WINDOWS)
  64 
  65 typedef unsigned char           UINT8;
  66 typedef char                    INT8;
  67 typedef short                   INT16;


  94 
  95 #ifndef TRUE
  96 #define TRUE    1
  97 #endif
  98 
  99 #ifndef FALSE
 100 #define FALSE   0
 101 #endif
 102 
 103 #undef NULL
 104 #ifndef NULL
 105 #define NULL    0L
 106 #endif
 107 
 108 
 109 
 110 
 111 #if X_PLATFORM == X_WINDOWS
 112 #include <stdlib.h>
 113 #define INLINE          _inline





 114 #endif
 115 
 116 
 117 #if X_PLATFORM == X_LINUX
 118 #define INLINE          inline
 119 #endif
 120 
 121 
 122 #if (X_PLATFORM == X_BSD) || (X_PLATFORM == X_MACOSX)
 123 #define INLINE          inline
 124 #endif
 125 
 126 
 127 #endif  // __SOUNDDEFS_INCLUDED__
< prev index next >