/* * Copyright (c) 1999, 2000 by Sun Microsystems, Inc. * All rights reserved. */ #ifndef _SYS_FS_UFS_SNAP_H #define _SYS_FS_UFS_SNAP_H #pragma ident "@(#)ufs_snap.h 1.1 00/08/17 SMI" #ifdef __cplusplus extern "C" { #endif #include #include #include /* debug levels */ #define UFSSNAPDB_CREATE 0x01 #define UFSSNAPDB_DELETE 0x02 extern int ufs_snap_create(struct vnode *, struct fiosnapcreate *, cred_t *); extern int ufs_snap_delete(struct vnode *, struct fiosnapdelete *, cred_t *); #ifdef __cplusplus } #endif #endif /* _SYS_FS_UFS_SNAP_H */