00001 /* 00002 * Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved. 00003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 00004 * 00005 * This code is free software; you can redistribute it and/or modify it 00006 * under the terms of the GNU General Public License version 2 only, as 00007 * published by the Free Software Foundation. Sun designates this 00008 * particular file as subject to the "Classpath" exception as provided 00009 * by Sun in the LICENSE file that accompanied this code. 00010 * 00011 * This code is distributed in the hope that it will be useful, but WITHOUT 00012 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00013 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00014 * version 2 for more details (a copy is included in the LICENSE file that 00015 * accompanied this code). 00016 * 00017 * You should have received a copy of the GNU General Public License version 00018 * 2 along with this work; if not, write to the Free Software Foundation, 00019 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 00020 * 00021 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, 00022 * CA 95054 USA or visit www.sun.com if you need additional information or 00023 * have any questions. 00024 */ 00025 00026 #ifndef _JAVASOFT_JNI_MD_H_ 00027 #define _JAVASOFT_JNI_MD_H_ 00028 00029 #define JNIEXPORT 00030 #define JNIIMPORT 00031 #define JNICALL 00032 00033 typedef int jint; 00034 #ifdef _LP64 /* 64-bit Solaris */ 00035 typedef long jlong; 00036 #else 00037 typedef long long jlong; 00038 #endif 00039 00040 typedef signed char jbyte; 00041 00042 #endif /* !_JAVASOFT_JNI_MD_H_ */