jni_sparc.h revision 513:2328d1d3f8cf
1217309Snwhitehorn/*
2217309Snwhitehorn * Copyright 1997-2004 Sun Microsystems, Inc.  All Rights Reserved.
3217309Snwhitehorn * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4217309Snwhitehorn *
5217309Snwhitehorn * This code is free software; you can redistribute it and/or modify it
6217309Snwhitehorn * under the terms of the GNU General Public License version 2 only, as
7217309Snwhitehorn * published by the Free Software Foundation.  Sun designates this
8217309Snwhitehorn * particular file as subject to the "Classpath" exception as provided
9217309Snwhitehorn * by Sun in the LICENSE file that accompanied this code.
10217309Snwhitehorn *
11217309Snwhitehorn * This code is distributed in the hope that it will be useful, but WITHOUT
12217309Snwhitehorn * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13217309Snwhitehorn * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14217309Snwhitehorn * version 2 for more details (a copy is included in the LICENSE file that
15217309Snwhitehorn * accompanied this code).
16217309Snwhitehorn *
17217309Snwhitehorn * You should have received a copy of the GNU General Public License version
18217309Snwhitehorn * 2 along with this work; if not, write to the Free Software Foundation,
19217309Snwhitehorn * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20217309Snwhitehorn *
21217309Snwhitehorn * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22217309Snwhitehorn * CA 95054 USA or visit www.sun.com if you need additional information or
23217309Snwhitehorn * have any questions.
24217309Snwhitehorn */
25217309Snwhitehorn
26217309Snwhitehorn#define JNIEXPORT
27217309Snwhitehorn#define JNIIMPORT
28217309Snwhitehorn#define JNICALL
29217309Snwhitehorn
30217309Snwhitehorntypedef int jint;
31217309Snwhitehorn
32217309Snwhitehorn#ifdef _LP64
33217309Snwhitehorn  typedef long jlong;
34217309Snwhitehorn#else
35217309Snwhitehorn  typedef long long jlong;
36217309Snwhitehorn#endif
37217309Snwhitehorn
38217309Snwhitehorntypedef signed char jbyte;
39217309Snwhitehorn