diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-02-17 00:32:19 +0000 |
commit | 0d382a262c0638d0f572fc37193ccc5ed3dc895f (patch) | |
tree | 8578dcddfce4191f3f7a142a37769df7add48475 /libk9copy/k9common.h | |
download | k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.tar.gz k9copy-0d382a262c0638d0f572fc37193ccc5ed3dc895f.zip |
Added old abandoned version of k9copy
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/k9copy@1091546 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'libk9copy/k9common.h')
-rw-r--r-- | libk9copy/k9common.h | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/libk9copy/k9common.h b/libk9copy/k9common.h new file mode 100644 index 0000000..633e8d6 --- /dev/null +++ b/libk9copy/k9common.h @@ -0,0 +1,48 @@ +// +// C++ Interface: k9common +// +// Description: +// +// +// Author: Jean-Michel PETIT <[email protected]>, (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 "ifo_types.h" +#include "dvd_reader.h" +#include "ifo_read.h" +#include "nav_read.h" +#include "nav_types.h" + +#include <qobject.h> +#include <qobjectlist.h> +#include <qptrlist.h> + +#ifndef DVD_BLOCK_LEN +#define DVD_BLOCK_LEN 2048 +#endif + +#include "k9dvdsize.h" +#ifndef NDEBUG + #define NDEBUG +#endif |