Fawkes API  Fawkes Development Version
blackboard.h
1 
2 /***************************************************************************
3  * blackboard.h - External predicates to remotely access the Fawkes
4  * blackboard
5  *
6  * Created: Wed Mar 09 16:57:03 2011
7  * Copyright 2011 Daniel Beck
8  *
9  ****************************************************************************/
10 
11 /* This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19  * GNU Library General Public License for more details.
20  *
21  * Read the full text in the LICENSE.GPL file in the doc directory.
22  */
23 
24 #ifndef __ECLIPSE_EXTERNALS_BLACKBOARD_H_
25 #define __ECLIPSE_EXTERNALS_BLACKBOARD_H_
26 
27 extern "C" int p_connect_to_blackboard();
28 extern "C" int p_disconnect_from_blackboard();
29 extern "C" int p_is_alive();
30 
31 extern "C" int p_open_interface();
32 extern "C" int p_close_interface();
33 
34 extern "C" int p_has_writer();
35 extern "C" int p_instance_serial();
36 
37 extern "C" int p_read_interfaces();
38 extern "C" int p_write_interfaces();
39 
40 extern "C" int p_read_from_interface();
41 extern "C" int p_write_to_interface();
42 
43 extern "C" int p_send_message();
44 extern "C" int p_recv_messages();
45 
46 #endif
47