jni_md.h 485 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /*
  2. * Copyright (c) 1996, 1998, Oracle and/or its affiliates. All rights reserved.
  3. * ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  4. *
  5. *
  6. *
  7. *
  8. *
  9. *
  10. *
  11. *
  12. *
  13. *
  14. *
  15. *
  16. *
  17. *
  18. *
  19. *
  20. *
  21. *
  22. *
  23. *
  24. */
  25. #ifndef _JAVASOFT_JNI_MD_H_
  26. #define _JAVASOFT_JNI_MD_H_
  27. #define JNIEXPORT __declspec(dllexport)
  28. #define JNIIMPORT __declspec(dllimport)
  29. #define JNICALL __stdcall
  30. typedef long jint;
  31. typedef __int64 jlong;
  32. typedef signed char jbyte;
  33. #endif /* !_JAVASOFT_JNI_MD_H_ */