home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#)jni_md.h 1.6 97/08/07
- *
- * Copyright 1993-1997 Sun Microsystems, Inc. 901 San Antonio Road,
- * Palo Alto, California, 94303, U.S.A. All Rights Reserved.
- *
- * This software is the confidential and proprietary information of Sun
- * Microsystems, Inc. ("Confidential Information"). You shall not
- * disclose such Confidential Information and shall use it only in
- * accordance with the terms of the license agreement you entered into
- * with Sun.
- *
- * CopyrightVersion 1.2
- *
- */
-
- #ifndef JNI_MD_H
- #define JNI_MD_H
-
- #define JNIEXPORT __declspec(dllexport)
- #define JNIIMPORT __declspec(dllimport)
- #define JNICALL __stdcall
-
- typedef long jint;
- typedef __int64 jlong;
- typedef signed char jbyte;
-
- #endif /* JNI_MD_H */
-