1 /* 2 * %W% %E% 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 __declspec(dllexport) 12 #define JNIIMPORT __declspec(dllimport) 13 #define JNICALL __stdcall 14 15 typedef long jint; 16 typedef __int64 jlong; 17 typedef signed char jbyte; 18 19 #endif /* !_JAVASOFT_JNI_MD_H_ */ 20