- Added include stdarg.h to make the header file compile by itself.

- Added JNI_TRUE and JNI_FALSE.
This commit is contained in:
jfrijters 2011-11-11 15:22:57 +00:00
Родитель a1b44a7b58
Коммит 59ead1ceee
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -24,6 +24,8 @@
#ifndef __JNI_H__
#define __JNI_H__
#include <stdarg.h>
#ifdef _WIN32
#define JNICALL __stdcall
#ifdef __cplusplus
@ -73,6 +75,9 @@ typedef float jfloat;
typedef double jdouble;
typedef jint jsize;
#define JNI_FALSE 0
#define JNI_TRUE 1
typedef struct
{
char *name;