1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

add missing extern C declaration

This commit is contained in:
Steffen Vogel 2019-03-26 15:31:50 +01:00
parent bcd7742e33
commit 7f34641ce2

View file

@ -21,6 +21,15 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*********************************************************************************/
#pragma once
#include <villas/config.h>
#ifdef __cplusplus
extern "C" {
#endif
/* Forward declarations */
struct vlist;
struct web;
struct super_node;
@ -45,3 +54,7 @@ enum state web_get_state(struct web *w);
#ifdef WITH_WEB
int web_callback_on_writable(struct web *w, struct lws *wsi);
#endif
#ifdef __cplusplus
}
#endif