Merge "jni.h: add three missing errors."
diff --git a/include_jni/jni.h b/include_jni/jni.h
index 2549b0d..4c34313 100644
--- a/include_jni/jni.h
+++ b/include_jni/jni.h
@@ -1133,6 +1133,9 @@
 #define JNI_ERR         (-1)        /* generic error */
 #define JNI_EDETACHED   (-2)        /* thread detached from the VM */
 #define JNI_EVERSION    (-3)        /* JNI version error */
+#define JNI_ENOMEM      (-4)        /* Out of memory */
+#define JNI_EEXIST      (-5)        /* VM already created */
+#define JNI_EINVAL      (-6)        /* Invalid argument */
 
 #define JNI_COMMIT      1           /* copy content, do not free buffer */
 #define JNI_ABORT       2           /* free buffer w/o copying back */