Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. /*
  2.  * @(#)jni_md.h 1.14 03/12/19
  3.  *
  4.  * Copyright 2004 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 __declspec(dllexport)
  12. #define JNIIMPORT __declspec(dllimport)
  13. #define JNICALL __stdcall
  14.  
  15. typedef long jint;
  16. typedef __int64 jlong;
  17. typedef signed char jbyte;
  18.  
  19. #endif /* !_JAVASOFT_JNI_MD_H_ */
  20.