Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Forgot to update migrate signature in Process
[simgrid.git] / src / jmsg_application_handler.h
1 /* Upcalls to the Java functions used as callback to the FleXML parser.     */
2
3 /* Copyright (c) 2008, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef MSG_JAPPLICATION_HANDLER_H
10 #define MSG_JAPPLICATION_HANDLER_H
11
12 #include <jni.h>
13 #include "msg/msg.h"
14 void japplication_handler_on_start_document(void);
15 void japplication_handler_on_end_document(void);
16 void japplication_handler_on_begin_process(void);
17 void japplication_handler_on_process_arg(void);
18 void japplication_handler_on_property(void);
19 void japplication_handler_on_end_process(void);
20
21 #endif                          /* !MSG_JAPPLICATION_HANDLER_H */