I have followed a tutorial on how to integrate a SFML window in a GTK window. The code works fine except for one line
App.create(GDK_WINDOW_HWND(win));
I had problems with obtaining the window handle to the gtk window but used this line of code:
GdkWindow *win = gtk_widget_get_window(window);
The error I'm getting now is that the parameter for win is not supported in the renderwindow.
If any one have an updated method for how to integrate Gtk+3.0 to an SFML window or at least knows how to make that line valid that would be great