Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge with master and fix conflicts
[simgrid.git] / src / bindings / lua / simgrid_lua.h
1 /* This program is free software; you can redistribute it and/or modify it
2  * under the terms of the license (GNU LGPL) which comes with this package. */
3
4 #ifndef SIMGRID_LUA_H
5 #define SIMGRID_LUA_H
6
7 #include <lua.h>
8
9 /* ********************************************************************************* */
10 /*                           Plaftorm functions                                      */
11 /* ********************************************************************************* */
12
13 int console_open(lua_State *L);
14 int console_close(lua_State *L);
15
16 int console_add_host(lua_State*);
17 int console_add_link(lua_State*);
18 int console_add_router(lua_State* L);
19 int console_add_route(lua_State*);
20 int console_AS_open(lua_State*);
21 int console_AS_close(lua_State *L);
22 int console_set_function(lua_State*);
23 int console_host_set_property(lua_State*);
24
25 #endif  /* SIMGRID_LUA_H */