コード例 #1
0
ファイル: wtools.c プロジェクト: ryanlee/mc
static void
fg_message (int flags, const char *title, const char *text)
{
    Dlg_head *d;

    d = do_create_message (flags, title, text);
    tty_getch ();
    dlg_run_done (d);
    destroy_dlg (d);
}
コード例 #2
0
ファイル: wtools.c プロジェクト: BpArCuCTeMbI/mc
static void
fg_message (int flags, const char *title, const char *text)
{
    WDialog *d;

    d = do_create_message (flags, title, text);
    tty_getch ();
    dlg_run_done (d);
    dlg_destroy (d);
}