[gtk+] run function in another thread than gui
- by sterh
Hello,
I have simple C/gtk+ application. I have function in this app which load image in gtkimageview widget:
gboolean
main_win_open( MainWin* mw, const char* file_path)
{
...
//loading and displaing image in gtkimageview
...
}
The loading image is work, but i need to run this function in another thread then main gui form;
I have…