예제 #1
0
console_t *uimon_window_resume(void)
{
    if (menu_draw) {
        return uimon_window_open();
    } else {
        return NULL;
    }
}
예제 #2
0
console_t *uimon_window_resume(void)
{
    if (console_log_local) {
        ui_focus_monitor();
        return console_log_local;
    }
    log_error(LOG_DEFAULT, "uimon_window_resume: log was not opened.");
    return uimon_window_open();
}
예제 #3
0
console_t *uimonfb_window_resume(void)
{
    if (console_log_local) {
        /* partially implemented */
        INCOMPLETE_IMPLEMENTATION();
#ifdef HAVE_MOUSE
        /* ui_restore_mouse(); */
#endif
        /* ui_focus_monitor(); */
        return console_log_local;
    }
    log_error(LOG_DEFAULT, "uimon_window_resume: log was not opened.");
    return uimon_window_open();
}
예제 #4
0
파일: uimon.c 프로젝트: martinpiper/VICE
console_t *uimon_window_resume(void)
{
  return uimon_window_open();
}