コード例 #1
0
ファイル: guixaddt.c プロジェクト: Ukusbobra/open-watcom-v2
bool GUIDeleteItem( gui_window *wnd, unsigned id, int choice )
{
    VFIELD      *field;
    a_list      *list;

    if( GetList( wnd, id, &field, &list ) ) {
        return( GUIListBoxDeleteItem( list, choice ) );
    }
    return( FALSE );
}
コード例 #2
0
bool GUIDeleteItem( gui_window *wnd, gui_ctl_id id, int choice )
{
    VFIELD      *field;
    a_list      *list;

    if( GetList( wnd, id, &field, &list ) ) {
        return( GUIListBoxDeleteItem( list, choice ) );
    }
    return( false );
}