kyotocabinet-java 0.1.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/Gemfile +15 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +62 -0
- data/VERSION +1 -0
- data/ext/kyotocabinet-java/.gitignore +2 -0
- data/ext/kyotocabinet-java/COPYING +674 -0
- data/ext/kyotocabinet-java/Cursor.java +268 -0
- data/ext/kyotocabinet-java/DB.java +650 -0
- data/ext/kyotocabinet-java/Error.java +257 -0
- data/ext/kyotocabinet-java/FileProcessor.java +42 -0
- data/ext/kyotocabinet-java/Loader.java +60 -0
- data/ext/kyotocabinet-java/Makefile.in +246 -0
- data/ext/kyotocabinet-java/MapReduce.java +127 -0
- data/ext/kyotocabinet-java/README +26 -0
- data/ext/kyotocabinet-java/Test.java +1494 -0
- data/ext/kyotocabinet-java/Utility.java +131 -0
- data/ext/kyotocabinet-java/VCmakefile +150 -0
- data/ext/kyotocabinet-java/ValueIterator.java +49 -0
- data/ext/kyotocabinet-java/Visitor.java +56 -0
- data/ext/kyotocabinet-java/configure.in +310 -0
- data/ext/kyotocabinet-java/doc/allclasses-frame.html +26 -0
- data/ext/kyotocabinet-java/doc/allclasses-noframe.html +26 -0
- data/ext/kyotocabinet-java/doc/constant-values.html +344 -0
- data/ext/kyotocabinet-java/doc/index-all.html +848 -0
- data/ext/kyotocabinet-java/doc/index.html +30 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/Cursor.html +711 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/DB.html +1674 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/Error.html +604 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/FileProcessor.html +210 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/MapReduce.html +461 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/Test.html +220 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/Utility.html +413 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/ValueIterator.html +221 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/Visitor.html +283 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/package-frame.html +33 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/package-summary.html +199 -0
- data/ext/kyotocabinet-java/doc/kyotocabinet/package-tree.html +141 -0
- data/ext/kyotocabinet-java/doc/overview-summary.html +285 -0
- data/ext/kyotocabinet-java/doc/overview-tree.html +145 -0
- data/ext/kyotocabinet-java/doc/package-list +1 -0
- data/ext/kyotocabinet-java/doc/resources/background.gif +0 -0
- data/ext/kyotocabinet-java/doc/resources/tab.gif +0 -0
- data/ext/kyotocabinet-java/doc/resources/titlebar.gif +0 -0
- data/ext/kyotocabinet-java/doc/resources/titlebar_end.gif +0 -0
- data/ext/kyotocabinet-java/doc/serialized-form.html +141 -0
- data/ext/kyotocabinet-java/doc/stylesheet.css +474 -0
- data/ext/kyotocabinet-java/example/KCDBEX1.java +44 -0
- data/ext/kyotocabinet-java/example/KCDBEX2.java +44 -0
- data/ext/kyotocabinet-java/example/Makefile +59 -0
- data/ext/kyotocabinet-java/kyotocabinet.cc +2187 -0
- data/ext/kyotocabinet-java/kyotocabinet_Cursor.h +157 -0
- data/ext/kyotocabinet-java/kyotocabinet_DB.h +353 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error.h +49 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XBROKEN.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XDUPREC.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XINVALID.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XLOGIC.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XMISC.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XNOIMPL.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XNOPERM.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XNOREC.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XNOREPOS.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XSUCCESS.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_Error_XSYSTEM.h +41 -0
- data/ext/kyotocabinet-java/kyotocabinet_MapReduce.h +33 -0
- data/ext/kyotocabinet-java/kyotocabinet_Utility.h +101 -0
- data/ext/kyotocabinet-java/kyotocabinet_ValueIterator.h +21 -0
- data/ext/kyotocabinet-java/overview.html +177 -0
- data/kyotocabinet-java.gemspec +129 -0
- data/lib/kyotocabinet-java.rb +141 -0
- data/lib/kyotocabinet-java/version.rb +5 -0
- metadata +222 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error
|
|
6
|
+
#define _Included_kyotocabinet_Error
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_INVALID
|
|
21
|
+
#define kyotocabinet_Error_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_NOREC
|
|
31
|
+
#define kyotocabinet_Error_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_MISC
|
|
37
|
+
#define kyotocabinet_Error_MISC 15L
|
|
38
|
+
/*
|
|
39
|
+
* Class: kyotocabinet_Error
|
|
40
|
+
* Method: codename
|
|
41
|
+
* Signature: (I)Ljava/lang/String;
|
|
42
|
+
*/
|
|
43
|
+
JNIEXPORT jstring JNICALL Java_kyotocabinet_Error_codename
|
|
44
|
+
(JNIEnv *, jclass, jint);
|
|
45
|
+
|
|
46
|
+
#ifdef __cplusplus
|
|
47
|
+
}
|
|
48
|
+
#endif
|
|
49
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XBROKEN */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XBROKEN
|
|
6
|
+
#define _Included_kyotocabinet_Error_XBROKEN
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XBROKEN_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XBROKEN_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XBROKEN_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XBROKEN_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XBROKEN_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XBROKEN_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XBROKEN_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XBROKEN_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XBROKEN_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XBROKEN_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XBROKEN_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XBROKEN_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XBROKEN_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XBROKEN_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XBROKEN_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XBROKEN_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XBROKEN_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XBROKEN_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XBROKEN_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XBROKEN_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XBROKEN_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XBROKEN_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XBROKEN_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XBROKEN_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XBROKEN_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XBROKEN_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XBROKEN_MISC
|
|
37
|
+
#define kyotocabinet_Error_XBROKEN_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XDUPREC */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XDUPREC
|
|
6
|
+
#define _Included_kyotocabinet_Error_XDUPREC
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XDUPREC_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XDUPREC_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XDUPREC_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XDUPREC_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XDUPREC_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XDUPREC_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XDUPREC_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XDUPREC_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XDUPREC_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XDUPREC_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XDUPREC_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XDUPREC_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XDUPREC_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XDUPREC_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XDUPREC_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XDUPREC_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XDUPREC_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XDUPREC_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XDUPREC_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XDUPREC_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XDUPREC_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XDUPREC_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XDUPREC_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XDUPREC_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XDUPREC_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XDUPREC_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XDUPREC_MISC
|
|
37
|
+
#define kyotocabinet_Error_XDUPREC_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XINVALID */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XINVALID
|
|
6
|
+
#define _Included_kyotocabinet_Error_XINVALID
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XINVALID_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XINVALID_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XINVALID_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XINVALID_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XINVALID_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XINVALID_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XINVALID_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XINVALID_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XINVALID_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XINVALID_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XINVALID_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XINVALID_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XINVALID_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XINVALID_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XINVALID_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XINVALID_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XINVALID_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XINVALID_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XINVALID_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XINVALID_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XINVALID_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XINVALID_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XINVALID_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XINVALID_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XINVALID_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XINVALID_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XINVALID_MISC
|
|
37
|
+
#define kyotocabinet_Error_XINVALID_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XLOGIC */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XLOGIC
|
|
6
|
+
#define _Included_kyotocabinet_Error_XLOGIC
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XLOGIC_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XLOGIC_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XLOGIC_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XLOGIC_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XLOGIC_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XLOGIC_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XLOGIC_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XLOGIC_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XLOGIC_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XLOGIC_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XLOGIC_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XLOGIC_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XLOGIC_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XLOGIC_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XLOGIC_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XLOGIC_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XLOGIC_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XLOGIC_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XLOGIC_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XLOGIC_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XLOGIC_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XLOGIC_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XLOGIC_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XLOGIC_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XLOGIC_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XLOGIC_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XLOGIC_MISC
|
|
37
|
+
#define kyotocabinet_Error_XLOGIC_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XMISC */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XMISC
|
|
6
|
+
#define _Included_kyotocabinet_Error_XMISC
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XMISC_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XMISC_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XMISC_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XMISC_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XMISC_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XMISC_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XMISC_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XMISC_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XMISC_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XMISC_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XMISC_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XMISC_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XMISC_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XMISC_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XMISC_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XMISC_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XMISC_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XMISC_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XMISC_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XMISC_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XMISC_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XMISC_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XMISC_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XMISC_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XMISC_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XMISC_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XMISC_MISC
|
|
37
|
+
#define kyotocabinet_Error_XMISC_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XNOIMPL */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XNOIMPL
|
|
6
|
+
#define _Included_kyotocabinet_Error_XNOIMPL
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XNOIMPL_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XNOIMPL_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XNOIMPL_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XNOIMPL_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XNOIMPL_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XNOIMPL_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XNOIMPL_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XNOIMPL_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XNOIMPL_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XNOIMPL_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XNOIMPL_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XNOIMPL_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XNOIMPL_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XNOIMPL_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XNOIMPL_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XNOIMPL_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XNOIMPL_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XNOIMPL_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XNOIMPL_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XNOIMPL_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XNOIMPL_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XNOIMPL_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XNOIMPL_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XNOIMPL_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XNOIMPL_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XNOIMPL_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XNOIMPL_MISC
|
|
37
|
+
#define kyotocabinet_Error_XNOIMPL_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XNOPERM */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XNOPERM
|
|
6
|
+
#define _Included_kyotocabinet_Error_XNOPERM
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XNOPERM_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XNOPERM_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XNOPERM_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XNOPERM_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XNOPERM_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XNOPERM_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XNOPERM_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XNOPERM_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XNOPERM_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XNOPERM_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XNOPERM_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XNOPERM_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XNOPERM_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XNOPERM_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XNOPERM_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XNOPERM_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XNOPERM_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XNOPERM_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XNOPERM_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XNOPERM_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XNOPERM_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XNOPERM_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XNOPERM_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XNOPERM_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XNOPERM_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XNOPERM_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XNOPERM_MISC
|
|
37
|
+
#define kyotocabinet_Error_XNOPERM_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XNOREC */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XNOREC
|
|
6
|
+
#define _Included_kyotocabinet_Error_XNOREC
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XNOREC_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XNOREC_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XNOREC_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XNOREC_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XNOREC_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XNOREC_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XNOREC_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XNOREC_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XNOREC_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XNOREC_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XNOREC_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XNOREC_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XNOREC_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XNOREC_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XNOREC_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XNOREC_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XNOREC_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XNOREC_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XNOREC_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XNOREC_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XNOREC_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XNOREC_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XNOREC_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XNOREC_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XNOREC_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XNOREC_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XNOREC_MISC
|
|
37
|
+
#define kyotocabinet_Error_XNOREC_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XNOREPOS */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XNOREPOS
|
|
6
|
+
#define _Included_kyotocabinet_Error_XNOREPOS
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XNOREPOS_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XNOREPOS_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XNOREPOS_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XNOREPOS_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XNOREPOS_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XNOREPOS_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XNOREPOS_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XNOREPOS_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XNOREPOS_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XNOREPOS_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XNOREPOS_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XNOREPOS_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XNOREPOS_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XNOREPOS_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XNOREPOS_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XNOREPOS_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XNOREPOS_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XNOREPOS_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XNOREPOS_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XNOREPOS_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XNOREPOS_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XNOREPOS_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XNOREPOS_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XNOREPOS_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XNOREPOS_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XNOREPOS_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XNOREPOS_MISC
|
|
37
|
+
#define kyotocabinet_Error_XNOREPOS_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
/* DO NOT EDIT THIS FILE - it is machine generated */
|
|
2
|
+
#include <jni.h>
|
|
3
|
+
/* Header for class kyotocabinet_Error_XSUCCESS */
|
|
4
|
+
|
|
5
|
+
#ifndef _Included_kyotocabinet_Error_XSUCCESS
|
|
6
|
+
#define _Included_kyotocabinet_Error_XSUCCESS
|
|
7
|
+
#ifdef __cplusplus
|
|
8
|
+
extern "C" {
|
|
9
|
+
#endif
|
|
10
|
+
#undef kyotocabinet_Error_XSUCCESS_serialVersionUID
|
|
11
|
+
#define kyotocabinet_Error_XSUCCESS_serialVersionUID -3042686055658047285LL
|
|
12
|
+
#undef kyotocabinet_Error_XSUCCESS_serialVersionUID
|
|
13
|
+
#define kyotocabinet_Error_XSUCCESS_serialVersionUID -3387516993124229948LL
|
|
14
|
+
#undef kyotocabinet_Error_XSUCCESS_serialVersionUID
|
|
15
|
+
#define kyotocabinet_Error_XSUCCESS_serialVersionUID -7034897190745766939LL
|
|
16
|
+
#undef kyotocabinet_Error_XSUCCESS_SUCCESS
|
|
17
|
+
#define kyotocabinet_Error_XSUCCESS_SUCCESS 0L
|
|
18
|
+
#undef kyotocabinet_Error_XSUCCESS_NOIMPL
|
|
19
|
+
#define kyotocabinet_Error_XSUCCESS_NOIMPL 1L
|
|
20
|
+
#undef kyotocabinet_Error_XSUCCESS_INVALID
|
|
21
|
+
#define kyotocabinet_Error_XSUCCESS_INVALID 2L
|
|
22
|
+
#undef kyotocabinet_Error_XSUCCESS_NOREPOS
|
|
23
|
+
#define kyotocabinet_Error_XSUCCESS_NOREPOS 3L
|
|
24
|
+
#undef kyotocabinet_Error_XSUCCESS_NOPERM
|
|
25
|
+
#define kyotocabinet_Error_XSUCCESS_NOPERM 4L
|
|
26
|
+
#undef kyotocabinet_Error_XSUCCESS_BROKEN
|
|
27
|
+
#define kyotocabinet_Error_XSUCCESS_BROKEN 5L
|
|
28
|
+
#undef kyotocabinet_Error_XSUCCESS_DUPREC
|
|
29
|
+
#define kyotocabinet_Error_XSUCCESS_DUPREC 6L
|
|
30
|
+
#undef kyotocabinet_Error_XSUCCESS_NOREC
|
|
31
|
+
#define kyotocabinet_Error_XSUCCESS_NOREC 7L
|
|
32
|
+
#undef kyotocabinet_Error_XSUCCESS_LOGIC
|
|
33
|
+
#define kyotocabinet_Error_XSUCCESS_LOGIC 8L
|
|
34
|
+
#undef kyotocabinet_Error_XSUCCESS_SYSTEM
|
|
35
|
+
#define kyotocabinet_Error_XSUCCESS_SYSTEM 9L
|
|
36
|
+
#undef kyotocabinet_Error_XSUCCESS_MISC
|
|
37
|
+
#define kyotocabinet_Error_XSUCCESS_MISC 15L
|
|
38
|
+
#ifdef __cplusplus
|
|
39
|
+
}
|
|
40
|
+
#endif
|
|
41
|
+
#endif
|