src/java.desktop/share/native/libjsound/SoundDefs.h
author phh
Sat, 30 Nov 2019 14:33:05 -0800
changeset 59330 5b96c12f909d
parent 47216 71c04702a3d5
permissions -rw-r--r--
8234541: C1 emits an empty message when it inlines successfully Summary: Use "inline" as the message when successfull Reviewed-by: thartmann, mdoerr Contributed-by: navy.xliu@gmail.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
29261
ea6e20f98dfa 8072665: SoundLibraries.gmk and SoundDefs.h: remove isSigned8() dead code
serb
parents: 25859
diff changeset
     2
 * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4111
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
#ifndef __SOUNDDEFS_INCLUDED__
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
#define __SOUNDDEFS_INCLUDED__
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
// types for X_PLATFORM
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
#define X_WINDOWS       1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
#define X_SOLARIS       2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
#define X_LINUX         3
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
    34
#define X_BSD           4
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
    35
#define X_MACOSX        5
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
// **********************************
29261
ea6e20f98dfa 8072665: SoundLibraries.gmk and SoundDefs.h: remove isSigned8() dead code
serb
parents: 25859
diff changeset
    38
// Make sure you set X_PLATFORM defines correctly.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
// Everything depends upon this flag being setup correctly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
// **********************************
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
    41
29261
ea6e20f98dfa 8072665: SoundLibraries.gmk and SoundDefs.h: remove isSigned8() dead code
serb
parents: 25859
diff changeset
    42
#if (!defined(X_PLATFORM))
ea6e20f98dfa 8072665: SoundLibraries.gmk and SoundDefs.h: remove isSigned8() dead code
serb
parents: 25859
diff changeset
    43
#error "You need to define X_PLATFORM outside of the source. Use the types above."
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
// following is needed for _LP64
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
    48
#if ((X_PLATFORM == X_SOLARIS) || (X_PLATFORM == X_LINUX) || (X_PLATFORM == X_MACOSX))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
#include <sys/types.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
#if X_PLATFORM == X_WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
#ifndef WIN32_LEAN_AND_MEAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
#define WIN32_LEAN_AND_MEAN
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
#include <windows.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
#endif /* X_PLATFORM == X_WINDOWS */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
* These types are defined elsewhere for newer 32/64-bit Windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
* header files, but not on Solaris/Linux (X_PLATFORM != X_WINDOWS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
#if (X_PLATFORM != X_WINDOWS)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
typedef unsigned char           UINT8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
typedef char                    INT8;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
typedef short                   INT16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
typedef unsigned short          UINT16;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
#ifdef _LP64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
typedef int                     INT32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
typedef unsigned int            UINT32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
typedef unsigned long           UINT64;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
typedef long                    INT64;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
#else /* _LP64 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
typedef long                    INT32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
typedef unsigned long           UINT32;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
/* generic 64 bit ? */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
typedef unsigned long long      UINT64;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
typedef long long               INT64;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
#endif /* _LP64 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
typedef unsigned long           UINT_PTR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
typedef long                    INT_PTR;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
#endif /* X_PLATFORM != X_WINDOWS */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
typedef unsigned char   UBYTE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
typedef char            SBYTE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
#undef TRUE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
#undef FALSE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
#ifndef TRUE
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
#define TRUE    1
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
#ifndef FALSE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
#define FALSE   0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
#undef NULL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
#ifndef NULL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
#define NULL    0L
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
#if X_PLATFORM == X_WINDOWS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
#include <stdlib.h>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
#define INLINE          _inline
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
#if X_PLATFORM == X_SOLARIS
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
#define INLINE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
#if X_PLATFORM == X_LINUX
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
#define INLINE          inline
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
#endif
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
12047
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
   128
#if (X_PLATFORM == X_BSD) || (X_PLATFORM == X_MACOSX)
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
   129
#define INLINE          inline
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
   130
#endif
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
   131
320a714614e9 7113349: Initial changeset for Macosx port to jdk
michaelm
parents: 8796
diff changeset
   132
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
#endif  // __SOUNDDEFS_INCLUDED__