I am new in C++ stuff and visual studio. Somehow I managed to add GTK lib and includes in Additional Include Directory! here is how i added
C:\gtk\include\atk-1.0;C:\gtk\include;C:\gtk\include\gdk-pixbuf-2.0;C:\gtk\include\pango-1.0;C:\gtk\include\cairo;C:\gtk\lib\gtk-2.0\include;C:\gtk\lib\glib-2.0\include;C:\gtk\include\glib-2.0;C:\gtk\include\gtk-2.0;%(AdditionalIncludeDirectories)
all files set correctly and no error with linking.
But when I compiling code I got this errors! here is image!

This is unrecognized error for me any one know what's the matter! here is code (this is basic code i get from tutorial over internet)
#include<gtk\gtk.h>
int main(int argc,char* argv[]){
gtk_init(&argc,&argv);
GtkWidget* window;
window = gtk_window_new(GTK_WINDOW_TOPLEVEL);
g_signal_connect(window,"delete-event",G_CALLBACK(gtk_main_quit),NULL);
gtk_widget_show(window);
gtk_main();
return 0;
}
thanks for help! and your time
gtk\gtk.hbegtk/gtk.h? – Blender Aug 19 '12 at 8:06