I have a program like this
int main(int argc, char *argv[])
{
gdk_threads_init();
gdk_threads_enter();
gtk_init(&argc, &argv);
gtk_main();
gdk_threads_leave();
return 0;
}
I wish to change the deprecated functions:
gdk_threads_init();
gdk_threads_enter();
gdk_threads_leave();
in order don't have a program with deprecated functions.
I wish to continue to use GTK library (https://www.gtk.org/support.php) in order to maintain the links with other parts of the programs.