43 lines
578 B
C
Executable File
43 lines
578 B
C
Executable File
/*
|
|
* Copyright (c) 1996, 2013, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
#ifndef _JAVASOFT_JNI_MD_H_
|
|
#define _JAVASOFT_JNI_MD_H_
|
|
|
|
#define JNIEXPORT __attribute__((visibility("default")))
|
|
#define JNIIMPORT __attribute__((visibility("default")))
|
|
#define JNICALL
|
|
|
|
typedef int jint;
|
|
#ifdef _LP64 /* 64-bit */
|
|
typedef long jlong;
|
|
#else
|
|
typedef long long jlong;
|
|
#endif
|
|
|
|
typedef signed char jbyte;
|
|
|
|
#endif /* !_JAVASOFT_JNI_MD_H_ */
|