зеркало из https://github.com/mozilla/gecko-dev.git
27 строки
509 B
C
27 строки
509 B
C
/*
|
|
* @(#)jni_md.h 1.11 00/02/02
|
|
*
|
|
* Copyright 1996-2000 Sun Microsystems, Inc. All Rights Reserved.
|
|
*
|
|
* This software is the proprietary information of Sun Microsystems, Inc.
|
|
* Use is subject to license terms.
|
|
*
|
|
*/
|
|
|
|
#ifndef _JAVASOFT_JNI_MD_H_
|
|
#define _JAVASOFT_JNI_MD_H_
|
|
|
|
#define JNIEXPORT
|
|
#define JNIIMPORT
|
|
#define JNICALL
|
|
|
|
#ifdef _LP64 /* 64-bit Solaris */
|
|
typedef int jint;
|
|
#else
|
|
typedef long jint;
|
|
#endif
|
|
typedef long long jlong;
|
|
typedef signed char jbyte;
|
|
|
|
#endif /* !_JAVASOFT_JNI_MD_H_ */
|