2011-03-29 13:30:07 +02:00
|
|
|
/*
|
2011-03-30 04:10:57 +02:00
|
|
|
* @(#)jni_md.h 1.16 10/03/23
|
2011-03-29 13:30:07 +02:00
|
|
|
*
|
2011-03-30 04:10:57 +02:00
|
|
|
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
2011-03-29 13:30:07 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _JAVASOFT_JNI_MD_H_
|
|
|
|
#define _JAVASOFT_JNI_MD_H_
|
|
|
|
|
|
|
|
#define JNIEXPORT __declspec(dllexport)
|
|
|
|
#define JNIIMPORT __declspec(dllimport)
|
|
|
|
#define JNICALL __stdcall
|
|
|
|
|
|
|
|
typedef long jint;
|
|
|
|
typedef __int64 jlong;
|
|
|
|
typedef signed char jbyte;
|
|
|
|
|
|
|
|
#endif /* !_JAVASOFT_JNI_MD_H_ */
|