home *** CD-ROM | disk | FTP | other *** search
/ Java 1.2 How-To / JavaHowTo.iso / 3rdParty / jbuilder / unsupported / JDK1.2beta3 / SOURCE / INCLUDE / WIN32 / JNI_MD.H
Encoding:
C/C++ Source or Header  |  1998-03-20  |  732 b   |  29 lines

  1. /*
  2.  * @(#)jni_md.h    1.6 97/08/07
  3.  * 
  4.  * Copyright 1993-1997 Sun Microsystems, Inc. 901 San Antonio Road, 
  5.  * Palo Alto, California, 94303, U.S.A.  All Rights Reserved.
  6.  * 
  7.  * This software is the confidential and proprietary information of Sun
  8.  * Microsystems, Inc. ("Confidential Information").  You shall not
  9.  * disclose such Confidential Information and shall use it only in
  10.  * accordance with the terms of the license agreement you entered into
  11.  * with Sun.
  12.  * 
  13.  * CopyrightVersion 1.2
  14.  * 
  15.  */
  16.  
  17. #ifndef JNI_MD_H
  18. #define JNI_MD_H
  19.  
  20. #define JNIEXPORT __declspec(dllexport)
  21. #define JNIIMPORT __declspec(dllimport)
  22. #define JNICALL __stdcall
  23.  
  24. typedef long jint;
  25. typedef __int64 jlong;
  26. typedef signed char jbyte;
  27.  
  28. #endif /* JNI_MD_H */
  29.