dongyukun
2025-02-21 2bf209dce77d2a8236dbeb14e110e300acc45452
提交 | 用户 | 时间
b2ff26 1 /*
D 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
26 #ifndef _JAVASOFT_JNI_MD_H_
27 #define _JAVASOFT_JNI_MD_H_
28
29 #define JNIEXPORT __declspec(dllexport)
30 #define JNIIMPORT __declspec(dllimport)
31 #define JNICALL __stdcall
32
33 typedef long jint;
34 typedef __int64 jlong;
35 typedef signed char jbyte;
36
37 #endif /* !_JAVASOFT_JNI_MD_H_ */