Le jeudi 13 avril 2006 à 02:05 +0200, hm a écrit :
> I`ve got a question .. is there any possibility to compile a program written 
> in ANSI C, which is using GTK by g++ compiler, without rewriting code ?  It`s 
> very important. 

Of course you can compile GTK+ C written code with g++.
C++ understand ANSI C and Gtk+ is designed to use this compiler with
specific directives :

#ifdef __cplusplus
extern "C"
{
#endif
// Bla bla 
#ifdef __cplusplus
}
#endif


Regards

Régis


_______________________________________________
gtk-list mailing list
gtk-list@gnome.org
http://mail.gnome.org/mailman/listinfo/gtk-list

Reply via email to