Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class de_tobias_playpad_NativeAudio */
#ifndef _Included_de_tobias_playpad_NativeAudio
#define _Included_de_tobias_playpad_NativeAudio
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: de_tobias_playpad_NativeAudio
* Method: play
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_de_tobias_playpad_NativeAudio_play
(JNIEnv *, jclass, jint);
/*
* Class: de_tobias_playpad_NativeAudio
* Method: pause
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_de_tobias_playpad_NativeAudio_pause
(JNIEnv *, jclass, jint);
/*
* Class: de_tobias_playpad_NativeAudio
* Method: stop
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_de_tobias_playpad_NativeAudio_stop
(JNIEnv *, jclass, jint);
/*
* Class: de_tobias_playpad_NativeAudio
* Method: getVolume
* Signature: (I)D
*/
JNIEXPORT jdouble JNICALL Java_de_tobias_playpad_NativeAudio_getVolume
(JNIEnv *, jclass, jint);
/*
* Class: de_tobias_playpad_NativeAudio
* Method: setVolume
* Signature: (ID)V
*/
JNIEXPORT void JNICALL Java_de_tobias_playpad_NativeAudio_setVolume
(JNIEnv *, jclass, jint, jdouble);
/*
* Class: de_tobias_playpad_NativeAudio
* Method: load
* Signature: (ILjava/lang/String;)V
*/
JNIEXPORT void JNICALL Java_de_tobias_playpad_NativeAudio_load
(JNIEnv *, jclass, jint, jstring);
/*
* Class: de_tobias_playpad_NativeAudio
* Method: dispose
* Signature: (I)V
*/
JNIEXPORT void JNICALL Java_de_tobias_playpad_NativeAudio_dispose
(JNIEnv *, jclass, jint);
/*
* Class: de_tobias_playpad_NativeAudio
* Method: getDuration
* Signature: (I)D
*/
JNIEXPORT jdouble JNICALL Java_de_tobias_playpad_NativeAudio_getDuration
(JNIEnv *, jclass, jint);
/*
* Class: de_tobias_playpad_NativeAudio
* Method: getPosition
* Signature: (I)D
*/
JNIEXPORT jdouble JNICALL Java_de_tobias_playpad_NativeAudio_getPosition
(JNIEnv *, jclass, jint);
#ifdef __cplusplus
}
#endif
#endif