Esempio n. 1
0
static void
destroy_plugin (ply_boot_splash_plugin_t *plugin)
{
        ply_trace ("destroying plugin");

        if (plugin == NULL)
                return;

        /* It doesn't ever make sense to keep this plugin on screen
         * after exit
         */
        hide_splash_screen (plugin, plugin->loop);

        free_views (plugin);
        if (plugin->message != NULL)
                free (plugin->message);

        free (plugin);
}
Esempio n. 2
0
static void displayMainMenu(char *_latest) {
  hide_splash_screen();
  show_main_menu(_latest);
  
  APP_LOG(APP_LOG_LEVEL_DEBUG, "Main menu has been set to display");
}