提交 | 用户 | 时间 | ||
bc5e0d | 1 | package iail.mdk.model.common; |
D | 2 | |
3 | public class Environment { | |
4 | public Environment() { | |
5 | } | |
6 | ||
7 | private native int jniInit(); | |
8 | ||
9 | private native int jniIsInit(); | |
10 | ||
11 | private native int jniRelease(); | |
12 | ||
13 | private native int statusCode(); | |
14 | ||
15 | public int init() { | |
16 | return this.jniInit(); | |
17 | } | |
18 | ||
19 | public int isInit() { | |
20 | return this.jniIsInit(); | |
21 | } | |
22 | ||
23 | public int release() { | |
24 | return this.jniRelease(); | |
25 | } | |
26 | } |