2001-12-05 19:41:52 +03:00
/*
2004-03-30 23:08:57 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2005-01-06 21:22:44 +03:00
* Copyright ( C ) 2004 - 2005 Red Hat , Inc . All rights reserved .
2001-12-05 19:41:52 +03:00
*
2004-03-30 23:08:57 +04:00
* This file is part of the device - mapper userspace tools .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
* of the GNU Lesser General Public License v .2 .1 .
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program ; if not , write to the Free Software Foundation ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
2001-12-05 19:41:52 +03:00
*/
2002-11-14 17:44:42 +03:00
# ifndef LIB_DMCOMMON_H
# define LIB_DMCOMMON_H
2003-01-22 00:25:11 +03:00
# include "libdevmapper.h"
2002-11-14 22:26:28 +03:00
struct target * create_target ( uint64_t start ,
2003-01-22 00:25:11 +03:00
uint64_t len ,
const char * type , const char * params ) ;
2001-12-05 19:41:52 +03:00
2005-01-06 01:00:40 +03:00
int add_dev_node ( const char * dev_name , uint32_t minor , uint32_t major ,
uid_t uid , gid_t gid , mode_t mode ) ;
2001-12-05 19:41:52 +03:00
int rm_dev_node ( const char * dev_name ) ;
2002-04-11 16:45:18 +04:00
int rename_dev_node ( const char * old_name , const char * new_name ) ;
2003-07-02 01:20:58 +04:00
void update_devs ( void ) ;
2001-12-05 19:41:52 +03:00
2005-01-06 21:22:44 +03:00
int set_selinux_context ( const char * path ) ;
2002-01-17 17:13:25 +03:00
# define DM_LIB_VERSION @DM_LIB_VERSION@
2002-11-14 17:44:42 +03:00
# endif