1/*
2 * This file is a replacement for Sun's jni_md.h.  It is here to make
3 * cross-compilation for Windows work in case $(JAVA_HOME)/include/win32
4 * is not installed.  It's a simple file that will hopefully not change
5 * between Java versions.
6 */
7
8#ifndef _JNI_MD_H_
9#define _JNI_MD_H_
10
11#define JNIEXPORT __declspec(dllexport)
12#define JNIIMPORT __declspec(dllimport)
13#define JNICALL __stdcall
14
15typedef long jint;
16typedef __int64 jlong;
17typedef signed char jbyte;
18
19#endif
20