Method: Curses::Menu#post

Defined in:
ext/curses/curses.c

#postObject

call-seq:

post

Post the menu.



3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
# File 'ext/curses/curses.c', line 3376

static VALUE
menu_post(VALUE obj)
{
    struct menudata *menup;
    int error;

    GetMENU(obj, menup);
    error = post_menu(menup->menu);
    check_curses_error(error);

    return obj;
}