comparison libmlk-adventure/adventure/state/map.h @ 292:08ab73b32832

misc: add extern "C" {} blocks for C++ friends
author David Demelier <markand@malikania.fr>
date Fri, 05 Mar 2021 10:08:09 +0100
parents a15f77eda9a4
children d01e83210ca2
comparison
equal deleted inserted replaced
291:5d8700074dd7 292:08ab73b32832
17 */ 17 */
18 18
19 #ifndef MOLKO_ADVENTURE_STATE_MAP_H 19 #ifndef MOLKO_ADVENTURE_STATE_MAP_H
20 #define MOLKO_ADVENTURE_STATE_MAP_H 20 #define MOLKO_ADVENTURE_STATE_MAP_H
21 21
22 #include <core/core.h>
23
22 struct state; 24 struct state;
25
26 CORE_BEGIN_DECLS
23 27
24 struct state * 28 struct state *
25 state_map_new(const char *, int, int); 29 state_map_new(const char *, int, int);
26 30
31 CORE_END_DECLS
32
27 #endif /* !MOLKO_ADVENTURE_STATE_MAP_H */ 33 #endif /* !MOLKO_ADVENTURE_STATE_MAP_H */
28 34