1 /* 2 * @(#)jni_md.h 1.20 10/03/23 3 * 4 * Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved. 5 * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 #ifndef _JAVASOFT_JNI_MD_H_ 9 #define _JAVASOFT_JNI_MD_H_ 10 11 #define JNIEXPORT 12 #define JNIIMPORT 13 #define JNICALL 14 15 typedef int jint; 16 #ifdef _LP64 /* 64-bit Solaris */ 17 typedef long jlong; 18 #else 19 typedef long long jlong; 20 #endif 21 22 typedef signed char jbyte; 23 24 #endif /* !_JAVASOFT_JNI_MD_H_ */ 25