blob: cb98ae7c0e64047cd50d88d0677ac7696f2681cf [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 1998-2007 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25
26#include <jni.h>
27#include "SoundDefs.h"
28#include "Configure.h" // put flags for debug msgs etc. here
29
30// return 1 if this platform is big endian, or 0 for little endian
31int UTIL_IsBigEndianPlatform();
32
33
34// ERROR PRINTS
35#ifdef USE_ERROR
36#define ERROR0(string) fprintf(stdout, (string)); fflush(stdout);
37#define ERROR1(string, p1) fprintf(stdout, (string), (p1)); fflush(stdout);
38#define ERROR2(string, p1, p2) fprintf(stdout, (string), (p1), (p2)); fflush(stdout);
39#define ERROR3(string, p1, p2, p3) fprintf(stdout, (string), (p1), (p2), (p3)); fflush(stdout);
40#define ERROR4(string, p1, p2, p3, p4) fprintf(stdout, (string), (p1), (p2), (p3), (p4)); fflush(stdout);
41#else
42#define ERROR0(string)
43#define ERROR1(string, p1)
44#define ERROR2(string, p1, p2)
45#define ERROR3(string, p1, p2, p3)
46#define ERROR4(string, p1, p2, p3, p4)
47#endif
48
49
50// TRACE PRINTS
51#ifdef USE_TRACE
52#define TRACE0(string) fprintf(stdout, (string)); fflush(stdout);
53#define TRACE1(string, p1) fprintf(stdout, (string), (p1)); fflush(stdout);
54#define TRACE2(string, p1, p2) fprintf(stdout, (string), (p1), (p2)); fflush(stdout);
55#define TRACE3(string, p1, p2, p3) fprintf(stdout, (string), (p1), (p2), (p3)); fflush(stdout);
56#define TRACE4(string, p1, p2, p3, p4) fprintf(stdout, (string), (p1), (p2), (p3), (p4)); fflush(stdout);
57#define TRACE5(string, p1, p2, p3, p4, p5) fprintf(stdout, (string), (p1), (p2), (p3), (p4), (p5)); fflush(stdout);
58#else
59#define TRACE0(string)
60#define TRACE1(string, p1)
61#define TRACE2(string, p1, p2)
62#define TRACE3(string, p1, p2, p3)
63#define TRACE4(string, p1, p2, p3, p4)
64#define TRACE5(string, p1, p2, p3, p4, p5)
65#endif
66
67
68// VERBOSE TRACE PRINTS
69#ifdef USE_VERBOSE_TRACE
70#define VTRACE0(string) fprintf(stdout, (string));
71#define VTRACE1(string, p1) fprintf(stdout, (string), (p1));
72#define VTRACE2(string, p1, p2) printf(stdout, (string), (p1), (p2));
73#define VTRACE3(string, p1, p2, p3) fprintf(stdout, (string), (p1), (p2), (p3));
74#define VTRACE4(string, p1, p2, p3, p4) fprintf(stdout, (string), (p1), (p2), (p3), (p4));
75#else
76#define VTRACE0(string)
77#define VTRACE1(string, p1)
78#define VTRACE2(string, p1, p2)
79#define VTRACE3(string, p1, p2, p3)
80#define VTRACE4(string, p1, p2, p3, p4)
81#endif
82
83
84void ThrowJavaMessageException(JNIEnv *e, const char *exClass, const char *msg);