void link_thing_after(WThing *after, WThing *thing) { WThing *parent=after->t_parent; LINK_ITEM_AFTER(parent->t_children, after, thing, t_next, t_prev); thing->t_parent=parent; }
void region_focuslist_move_after(WRegion *reg, WRegion *after) { region_focuslist_remove_with_mgrs(reg); LINK_ITEM_AFTER(ioncore_g.focuslist, after, reg, active_next, active_prev); }