cdio_types.h -> types.h

This commit is contained in:
rocky
2003-04-03 12:16:27 +00:00
parent d10a388ad0
commit cd4f206a22
11 changed files with 23 additions and 23 deletions

View File

@@ -1,4 +1,4 @@
# $Id: Makefile.am,v 1.3 2003/03/29 17:32:00 rocky Exp $
# $Id: Makefile.am,v 1.4 2003/04/03 12:16:27 rocky Exp $
#
# Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
#
@@ -23,7 +23,7 @@
noinst_HEADERS = cdio_assert.h bytesex.h bytesex_asm.h \
cdio_private.h ds.h
include_HEADERS = cdio.h logging.h sector.h cdio_types.h util.h
include_HEADERS = cdio.h logging.h sector.h types.h util.h
libcdio_sources = \
_cdio_bincue.c \
@@ -43,7 +43,7 @@ libcdio_sources = \
cdio.h \
ds.c \
ds.h \
cdio_types.h \
types.h \
logging.c \
logging.h \
sector.c \

View File

@@ -1,5 +1,5 @@
/*
$Id: _cdio_stream.h,v 1.2 2003/03/29 17:32:00 rocky Exp $
$Id: _cdio_stream.h,v 1.3 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
@@ -23,7 +23,7 @@
#ifndef __CDIO_STREAM_H__
#define __CDIO_STREAM_H__
#include "cdio_types.h"
#include "types.h"
#ifdef __cplusplus
extern "C" {

View File

@@ -1,5 +1,5 @@
/*
$Id: bytesex.h,v 1.1 2003/03/24 19:01:09 rocky Exp $
$Id: bytesex.h,v 1.2 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
@@ -21,7 +21,7 @@
#ifndef __CDIO_BYTESEX_H__
#define __CDIO_BYTESEX_H__
#include "cdio_types.h"
#include "types.h"
#include "logging.h"
#include "bytesex_asm.h"

View File

@@ -1,5 +1,5 @@
/*
$Id: bytesex_asm.h,v 1.1 2003/03/24 19:01:09 rocky Exp $
$Id: bytesex_asm.h,v 1.2 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2001 Sven Ottemann <ac-logic@freenet.de>
2001 Herbert Valerio Riedel <hvr@gnu.org>
@@ -23,7 +23,7 @@
#define __CDIO_BYTESEX_ASM_H__
#if !defined(DISABLE_ASM_OPTIMIZE)
#include "cdio_types.h"
#include "types.h"
#if defined(__powerpc__) && defined(__GNUC__)

View File

@@ -1,5 +1,5 @@
/*
$Id: cdio.h,v 1.4 2003/03/30 13:01:22 rocky Exp $
$Id: cdio.h,v 1.5 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2001 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
@@ -32,7 +32,7 @@
#include <unistd.h>
#endif
#include "cdio_types.h"
#include "types.h"
#include "sector.h"
/* Flags specifying the category of device to open or is opened. */

View File

@@ -1,5 +1,5 @@
/*
$Id: cdio_assert.h,v 1.1 2003/03/24 19:01:09 rocky Exp $
$Id: cdio_assert.h,v 1.2 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
@@ -23,7 +23,7 @@
#if defined(__GNUC__)
#include "cdio_types.h"
#include "types.h"
#include "logging.h"
#define cdio_assert(expr) \

View File

@@ -1,5 +1,5 @@
/*
$Id: ds.c,v 1.1 2003/03/24 19:01:09 rocky Exp $
$Id: ds.c,v 1.2 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
@@ -27,10 +27,10 @@
#include "ds.h"
#include "util.h"
#include "cdio_types.h"
#include "types.h"
#include "cdio_assert.h"
static const char _rcsid[] = "$Id: ds.c,v 1.1 2003/03/24 19:01:09 rocky Exp $";
static const char _rcsid[] = "$Id: ds.c,v 1.2 2003/04/03 12:16:27 rocky Exp $";
struct _CdioList
{

View File

@@ -1,5 +1,5 @@
/*
$Id: ds.h,v 1.1 2003/03/24 19:01:09 rocky Exp $
$Id: ds.h,v 1.2 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
@@ -21,7 +21,7 @@
#ifndef __CDIO_DS_H__
#define __CDIO_DS_H__
#include "cdio_types.h"
#include "types.h"
/* opaque... */
typedef struct _CdioList CdioList;

View File

@@ -1,5 +1,5 @@
/*
$Id: logging.h,v 1.1 2003/03/24 19:01:09 rocky Exp $
$Id: logging.h,v 1.2 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
@@ -21,7 +21,7 @@
#ifndef __LOGGING_H__
#define __LOGGING_H__
#include "cdio_types.h"
#include "types.h"
typedef enum {
CDIO_LOG_DEBUG = 1,

View File

@@ -1,5 +1,5 @@
/*
$Id: sector.h,v 1.2 2003/03/29 17:32:00 rocky Exp $
$Id: sector.h,v 1.3 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2003 Rocky Bernstein <rocky@panix.com>
@@ -25,7 +25,7 @@
#ifndef _CDIO_SECTOR_H_
#define _CDIO_SECTOR_H_
#include "cdio_types.h"
#include "types.h"
#define CDIO_PREGAP_SECTORS 150
#define CDIO_POSTGAP_SECTORS 150

View File

@@ -1,5 +1,5 @@
/*
$Id: cdio_types.h,v 1.2 2003/03/29 17:32:00 rocky Exp $
$Id: types.h,v 1.1 2003/04/03 12:16:27 rocky Exp $
Copyright (C) 2000 Herbert Valerio Riedel <hvr@gnu.org>
Copyright (C) 2002,2003 Rocky Bernstein <rocky@panix.com>