e979c658c9
and DVD's behave like floppy discs. Writing is supported upto and including version 2.01; version 2.50 and 2.60 will follow. Also extending the UDF implementation to support symbolic links and hardlinks. Added are the mmcformat(8) tool to format rewritable CD/DVD discs and newfs_udf(8). Limitations: all operations can be performed on the file system though the sheduling is currently optimised for archiving workloads. mv(1)/rename(2) is currently only implemented for non-directories.
44 lines
1.5 KiB
C
44 lines
1.5 KiB
C
/* $NetBSD: defs.h,v 1.1 2008/05/14 16:49:48 reinoud Exp $ */
|
|
|
|
/*
|
|
* File "defs.h" is part of the UDFclient toolkit.
|
|
* File $Id: defs.h,v 1.1 2008/05/14 16:49:48 reinoud Exp $ $Name: $
|
|
*
|
|
* Copyright (c) 2003, 2004, 2005, 2006 Reinoud Zandijk <reinoud@netbsd.org>
|
|
* All rights reserved.
|
|
*
|
|
* The UDFclient toolkit is distributed under the Clarified Artistic Licence.
|
|
* A copy of the licence is included in the distribution as
|
|
* `LICENCE.clearified.artistic' and a copy of the licence can also be
|
|
* requested at the GNU foundantion's website.
|
|
*
|
|
* Visit the UDFclient toolkit homepage http://www.13thmonkey.org/udftoolkit/
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
*/
|
|
|
|
|
|
#ifndef _DEFS_H_
|
|
#define _DEFS_H_
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <dirent.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <inttypes.h>
|
|
|
|
|
|
#endif /* _DEFS_H_ */
|
|
|