You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
859 B
49 lines
859 B
//
|
|
// C++ Interface: k9common
|
|
//
|
|
// Description:
|
|
//
|
|
//
|
|
// Author: Jean-Michel PETIT <k9copy@free.fr>, (C) 2006
|
|
//
|
|
// Copyright: See COPYING file that comes with this distribution
|
|
//
|
|
//
|
|
|
|
#include "config.h"
|
|
#ifndef __STDC_LIMIT_MACROS
|
|
#define __STDC_LIMIT_MACROS
|
|
#endif
|
|
#ifndef __STDC_CONSTANT_MACROS
|
|
#define __STDC_CONSTANT_MACROS
|
|
#endif
|
|
|
|
#if defined(HAVE_INTTYPES_H)
|
|
#include <inttypes.h>
|
|
#elif defined( HAVE_STDINT_H)
|
|
#include <stdint.h>
|
|
#endif
|
|
|
|
|
|
#ifdef __FreeBSD__
|
|
#include <osreldate.h>
|
|
#endif
|
|
#include <dvdread/ifo_types.h>
|
|
#include <dvdread/dvd_reader.h>
|
|
#include <dvdread/ifo_read.h>
|
|
#include <dvdread/nav_read.h>
|
|
#include <dvdread/nav_types.h>
|
|
|
|
#include <tqobject.h>
|
|
#include <tqobjectlist.h>
|
|
#include <tqptrlist.h>
|
|
|
|
#ifndef DVD_BLOCK_LEN
|
|
#define DVD_BLOCK_LEN 2048
|
|
#endif
|
|
|
|
#include "k9dvdsize.h"
|
|
#ifndef NDEBUG
|
|
#define NDEBUG
|
|
#endif
|