Blame libparanoia/overlap.h

Packit 45fded
/*
Packit 45fded
 * This file has been modified for the cdrkit suite.
Packit 45fded
 *
Packit 45fded
 * The behaviour and appearence of the program code below can differ to a major
Packit 45fded
 * extent from the version distributed by the original author(s).
Packit 45fded
 *
Packit 45fded
 * For details, see Changelog file distributed with the cdrkit package. If you
Packit 45fded
 * received this file from another source then ask the distributing person for
Packit 45fded
 * a log of modifications.
Packit 45fded
 *
Packit 45fded
 */
Packit 45fded
Packit 45fded
/* @(#)overlap.h	1.7 04/02/18 J. Schilling from cdparanoia-III-alpha9.8 */
Packit 45fded
/*
Packit 45fded
 *	Modifications to make the code portable Copyright (c) 2002 J. Schilling
Packit 45fded
 */
Packit 45fded
/*
Packit 45fded
 * CopyPolicy: GNU Public License 2 applies
Packit 45fded
 * Copyright (C) by Monty (xiphmont@mit.edu)
Packit 45fded
 */
Packit 45fded
Packit 45fded
#ifndef	_OVERLAP_H_
Packit 45fded
#define	_OVERLAP_H_
Packit 45fded
Packit 45fded
extern	void	paranoia_resetcache(cdrom_paranoia *p);
Packit 45fded
extern	void	paranoia_resetall(cdrom_paranoia *p);
Packit 45fded
extern	void	i_paranoia_trim(cdrom_paranoia *p, long beginword, long endword);
Packit 45fded
extern	void	offset_adjust_settings(cdrom_paranoia *p,
Packit 45fded
												  void (*callback) (long, int));
Packit 45fded
extern	void	offset_add_value(cdrom_paranoia *p, offsets *o, long value,
Packit 45fded
										  void (*callback) (long, int));
Packit 45fded
Packit 45fded
#endif