From: akashihi Date: Sun, 14 Mar 2010 15:26:31 +0000 (+0000) Subject: Fix:core:Made gui.h c++ friendly X-Git-Tag: navit-0.5.0.5194svn~2184 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c3d3e61fa42709d317c195c3d735c41e40c57c4;p=profile%2Fivi%2Fnavit.git Fix:core:Made gui.h c++ friendly git-svn-id: https://navit.svn.sourceforge.net/svnroot/navit/trunk@3007 ffa7fe5e-494d-0410-b361-a75ebd5db220 --- diff --git a/navit/navit/gui.h b/navit/navit/gui.h index b19b512..a5e6356 100644 --- a/navit/navit/gui.h +++ b/navit/navit/gui.h @@ -20,6 +20,9 @@ #ifndef NAVIT_GUI_H #define NAVIT_GUI_H +#ifdef __cplusplus +extern "C" { +#endif struct navit; struct gui_priv; struct menu_methods; @@ -66,6 +69,9 @@ void gui_disable_suspend(struct gui *this_); int gui_has_main_loop(struct gui *this_); int gui_run_main_loop(struct gui *this_); /* end of prototypes */ +#ifdef __cplusplus +} +#endif #endif