Statistics
| Revision:

svn-gvsig-desktop / tags / v1_1_2_Build_1041 / libraries / libjni-gdal-macosx / include / jni_linux / jni_md.h @ 28800

History | View | Annotate | Download (453 Bytes)

1 8219 nacho
/*
2
 * @(#)jni_md.h        1.17 03/01/23
3
 *
4
 * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
5
 * SUN 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
12
#define JNIIMPORT
13
#define JNICALL
14
15
typedef int jint;
16
#ifdef _LP64 /* 64-bit Solaris */
17
typedef long jlong;
18
#else
19
typedef long long jlong;
20
#endif
21
22
typedef signed char jbyte;
23
24
#endif /* !_JAVASOFT_JNI_MD_H_ */