You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
459 B
12 lines
459 B
#include "ubinstall-gtk.h"
|
|
|
|
int yon_installation_start(main_window *widgets){
|
|
return !pthread_create(&main_config.install_thread,NULL,on_config_save,widgets);
|
|
}
|
|
|
|
void yon_quick_install(GtkWidget *self, main_window *widgets){
|
|
main_config.save_configured=1;
|
|
gtk_widget_hide(self);
|
|
pthread_create(&main_config.install_thread,NULL,on_config_save,widgets);
|
|
gtk_notebook_set_current_page(GTK_NOTEBOOK(widgets->Notebook),YON_PAGE_INSTALLATION);
|
|
} |