6143N/A/*
6143N/A * Copyright (c) 1996, 2000, Oracle and/or its affiliates. All rights reserved.
6143N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6143N/A *
6143N/A * This code is free software; you can redistribute it and/or modify it
6143N/A * under the terms of the GNU General Public License version 2 only, as
6143N/A * published by the Free Software Foundation. Oracle designates this
6143N/A * particular file as subject to the "Classpath" exception as provided
6143N/A * by Oracle in the LICENSE file that accompanied this code.
6143N/A *
6143N/A * This code is distributed in the hope that it will be useful, but WITHOUT
6143N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
6143N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
6143N/A * version 2 for more details (a copy is included in the LICENSE file that
6143N/A * accompanied this code).
6143N/A *
6143N/A * You should have received a copy of the GNU General Public License version
6143N/A * 2 along with this work; if not, write to the Free Software Foundation,
6143N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
6143N/A *
6143N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
6143N/A * or visit www.oracle.com if you need additional information or have any
6143N/A * questions.
6143N/A */
6143N/A
6143N/A#ifndef _JAVASOFT_JNI_MD_H_
6143N/A#define _JAVASOFT_JNI_MD_H_
6143N/A
6143N/A#define JNIEXPORT
6143N/A#define JNIIMPORT
6143N/A#define JNICALL
6143N/A
6143N/Atypedef int jint;
6143N/A#ifdef _LP64 /* 64-bit */
6143N/Atypedef long jlong;
6143N/A#else
6143N/Atypedef long long jlong;
6143N/A#endif
6143N/Atypedef signed char jbyte;
6143N/A
6143N/A#endif /* !_JAVASOFT_JNI_MD_H_ */