forked from nvcruzhe/jni
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaCWrapper.h
More file actions
59 lines (52 loc) · 1.22 KB
/
JavaCWrapper.h
File metadata and controls
59 lines (52 loc) · 1.22 KB
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
/**
* Author: Nelson Victor Cruz Hdez
* Alias: vicco
* Mail: victor.cruz.isc@gmail.com | victor@bitso.com
* Description: Simple C calling method class
* Date: 29/10/2017
*/
/*
* Generated with the following command:
* javah -jni <java class that wraps C methods>
* e.j. javah -jni JavaCWrapper
*/
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class JavaCWrapper */
#ifndef _Included_JavaCWrapper
#define _Included_JavaCWrapper
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: JavaCWrapper
* Method: additionFromC
* Signature: (DD)D
*/
JNIEXPORT jdouble JNICALL Java_JavaCWrapper_additionFromC
(JNIEnv *, jobject, jdouble, jdouble);
/*
* Class: JavaCWrapper
* Method: substractionFromC
* Signature: (DD)D
*/
JNIEXPORT jdouble JNICALL Java_JavaCWrapper_substractionFromC
(JNIEnv *, jobject, jdouble, jdouble);
/*
* Class: JavaCWrapper
* Method: divisionFromC
* Signature: (DD)D
*/
JNIEXPORT jdouble JNICALL Java_JavaCWrapper_divisionFromC
(JNIEnv *, jobject, jdouble, jdouble);
/*
* Class: JavaCWrapper
* Method: aboutFromC
* Signature: ()V
*/
JNIEXPORT void JNICALL Java_JavaCWrapper_aboutFromC
(JNIEnv *, jobject);
#ifdef __cplusplus
}
#endif
#endif