2004-03-26 15:00:24 +03:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2003 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2007 Red Hat , Inc . All rights reserved .
2004-03-26 15:00:24 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2004-03-30 23:35:44 +04:00
*
2007-08-21 00:55:30 +04:00
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 23:35:44 +04:00
* along with this program ; if not , write to the Free Software Foundation ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
2004-03-26 15:00:24 +03:00
*/
# ifndef _LVM_CMDLINE_H
# define _LVM_CMDLINE_H
2006-08-19 01:17:18 +04:00
struct cmd_context ;
2007-02-14 19:51:48 +03:00
struct cmdline_context {
2010-11-11 20:29:05 +03:00
struct arg_props * arg_props ;
2007-02-14 19:51:48 +03:00
struct command * commands ;
int num_commands ;
int commands_size ;
int interactive ;
} ;
2008-12-18 08:27:17 +03:00
int lvm2_main ( int argc , char * * argv ) ;
2006-08-19 01:17:18 +04:00
2008-12-19 21:51:02 +03:00
void * cmdlib_lvm2_init ( unsigned static_compile ) ;
2006-08-19 01:17:18 +04:00
void lvm_fin ( struct cmd_context * cmd ) ;
2008-12-18 08:27:17 +03:00
struct cmd_context * init_lvm ( void ) ;
2006-08-19 01:17:18 +04:00
void lvm_register_commands ( void ) ;
int lvm_split ( char * str , int * argc , char * * argv , int max ) ;
int lvm_run_command ( struct cmd_context * cmd , int argc , char * * argv ) ;
2010-01-11 22:19:17 +03:00
int lvm_return_code ( int ret ) ;
2007-02-14 19:51:48 +03:00
int lvm_shell ( struct cmd_context * cmd , struct cmdline_context * cmdline ) ;
2004-03-26 15:00:24 +03:00
# endif