X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8f52f1d8141294fc2899777237b98d39c86d7c8..16bbb8a8212497d9c44c81333ed2c0e689e0c5af:/src/bindings/java/jmsg_file.h diff --git a/src/bindings/java/jmsg_file.h b/src/bindings/java/jmsg_file.h index dfa3690b0c..2d92f7a62d 100644 --- a/src/bindings/java/jmsg_file.h +++ b/src/bindings/java/jmsg_file.h @@ -1,50 +1,55 @@ /* Functions related to the java file API. */ -/* Copyright (c) 2012. The SimGrid Team. + +/* Copyright (c) 2012-2015. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it - * under the terms of the license (GNU LGPL) which comes with this package. */ + * under the terms of the license (GNU LGPL) which comes with this package. */ #ifndef MSG_JFILE_H #define MSG_JFILE_H #include -#include "msg/msg.h" +#include "simgrid/msg.h" + +SG_BEGIN_DECL() jfieldID jfile_field_bind; void jfile_bind(JNIEnv *env, jobject jfile, msg_file_t fd); msg_file_t jfile_get_native(JNIEnv *env, jobject jfile); /** - * Class org_simgrid_msg_File - * Method nativeInit - * Signature ()V + * Class org_simgrid_msg_File + * Method nativeInit + * Signature ()V */ JNIEXPORT void JNICALL Java_org_simgrid_msg_File_nativeInit(JNIEnv*, jclass); /** - * Class org_simgrid_msg_File - * Method open - * Signature (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V + * Class org_simgrid_msg_File + * Method open + * Signature (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V */ JNIEXPORT void JNICALL -Java_org_simgrid_msg_File_open(JNIEnv*, jobject, jobject, jobject); +Java_org_simgrid_msg_File_open(JNIEnv*, jobject, jobject); /** - * Class org_simgrid_msg_File - * Method read + * Class org_simgrid_msg_File + * Method read */ JNIEXPORT jlong JNICALL -Java_org_simgrid_msg_File_read(JNIEnv*, jobject, jlong, jlong); +Java_org_simgrid_msg_File_read(JNIEnv*, jobject, jlong); /** - * Class org_simgrid_msg_File - * Method write + * Class org_simgrid_msg_File + * Method write */ JNIEXPORT jlong JNICALL -Java_org_simgrid_msg_File_write(JNIEnv*, jobject, jlong, jlong); +Java_org_simgrid_msg_File_write(JNIEnv*, jobject, jlong); /** - * Class org_simgrid_msg_File - * Method close + * Class org_simgrid_msg_File + * Method close */ JNIEXPORT void JNICALL Java_org_simgrid_msg_File_close(JNIEnv*, jobject); +SG_END_DECL() + #endif