From 6b1f991d5004629e497794f3bd3839695037a7c7 Mon Sep 17 00:00:00 2001 From: rw-r-r-0644 Date: Sat, 29 Sep 2018 12:03:33 +0200 Subject: [PATCH] add C++ support --- include/romfs-wiiu.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/romfs-wiiu.h b/include/romfs-wiiu.h index 375d3a9..a49f9b1 100644 --- a/include/romfs-wiiu.h +++ b/include/romfs-wiiu.h @@ -1,7 +1,15 @@ #ifndef __WIIU_ROMFS #define __WIIU_ROMFS +#ifdef __cplusplus +extern "C" { +#endif + uint32_t romfsInit(); uint32_t romfsExit(); +#ifdef __cplusplus +} +#endif + #endif \ No newline at end of file