Blame jni/linux/jni_md.h

Packit 5e46da
/* ***** BEGIN LICENSE BLOCK *****
Packit 5e46da
 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
Packit 5e46da
 *
Packit 5e46da
 * The contents of this file are subject to the Mozilla Public License Version
Packit 5e46da
 * 1.1 (the "License"); you may not use this file except in compliance with
Packit 5e46da
 * the License. You may obtain a copy of the License at
Packit 5e46da
 * http://www.mozilla.org/MPL/
Packit 5e46da
 *
Packit 5e46da
 * Software distributed under the License is distributed on an "AS IS" basis,
Packit 5e46da
 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
Packit 5e46da
 * for the specific language governing rights and limitations under the
Packit 5e46da
 * License.
Packit 5e46da
 *
Packit 5e46da
 * The Original Code is the Java Runtime Interface.
Packit 5e46da
 *
Packit 5e46da
 * The Initial Developer of the Original Code is
Packit 5e46da
 * Netscape Communications Corporation and Sun Microsystems, Inc.
Packit 5e46da
 * Portions created by the Initial Developer are Copyright (C) 1993-1996
Packit 5e46da
 * the Initial Developer. All Rights Reserved.
Packit 5e46da
 *
Packit 5e46da
 * Contributor(s):
Packit 5e46da
 *                  Jean-Baptiste Kempf
Packit 5e46da
 *
Packit 5e46da
 * Alternatively, the contents of this file may be used under the terms of
Packit 5e46da
 * either the GNU General Public License Version 2 or later (the "GPL"), or
Packit 5e46da
 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
Packit 5e46da
 * in which case the provisions of the GPL or the LGPL are applicable instead
Packit 5e46da
 * of those above. If you wish to allow use of your version of this file only
Packit 5e46da
 * under the terms of either the GPL or the LGPL, and not to allow others to
Packit 5e46da
 * use your version of this file under the terms of the MPL, indicate your
Packit 5e46da
 * decision by deleting the provisions above and replace them with the notice
Packit 5e46da
 * and other provisions required by the GPL or the LGPL. If you do not delete
Packit 5e46da
 * the provisions above, a recipient may use your version of this file under
Packit 5e46da
 * the terms of any one of the MPL, the GPL or the LGPL.
Packit 5e46da
 *
Packit 5e46da
 * ***** END LICENSE BLOCK ***** */
Packit 5e46da
Packit 5e46da
#ifndef _JNI_MD_H_
Packit 5e46da
#define _JNI_MD_H_
Packit 5e46da
Packit 5e46da
#define JNIEXPORT
Packit 5e46da
#define JNIIMPORT
Packit 5e46da
#define JNICALL
Packit 5e46da
Packit 5e46da
typedef int jint;
Packit 5e46da
#ifdef __LP64__
Packit 5e46da
typedef long jlong;
Packit 5e46da
#else
Packit 5e46da
typedef long long jlong;
Packit 5e46da
#endif
Packit 5e46da
Packit 5e46da
typedef signed char jbyte;
Packit 5e46da
Packit 5e46da
#endif /* !_JNI_MD_H_ */