#ifndef _SUBSHELL_H #define _SUBSHELL_H /* * Concurrent shell support for the Midnight Commander * Copyright (C) 1994, 1995 Dugan Porter * * This program is free software; you can redistribute it and/or * modify it under the terms of Version 2 of the GNU General Public * License, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ int zvt_init_subshell (struct vt_em *vt, char *pty_name, int full); int zvt_shutdown_subshell (struct vt_em *vt); int zvt_resize_subshell (int fd, int col, int row, int xpixel, int ypixel); #endif /* _SUBSHELL_H */