// HBVMODELAPI.cpp : Defines the entry point for the DLL application.
//
#include "stdafx.h"
#include "edu_uji_aware_hbv_HBVModel.h"
extern "C"
{
void _imp_test(char*, int);
#define test _imp_test
};
JNIEXPORT void JNICALL Java_edu_uji_aware_hbv_HBVModel_hbv
(JNIEnv *env, jobject obj, jintArray flag, jfloat ages)
{
//just testing
char szCtest[20];
strcpy(szCtest,"teststring");
test(szCtest, strlen(szCtest));
}