diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-06 16:19:20 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-08-06 16:19:20 +0200 |
commit | c19ad04a214169430f2db45f631c3d49dbcb6af9 (patch) | |
tree | 9e3d04c86a5865e2c47d2af4a5ef1f948fd7be34 /dvd.h | |
parent | 81cf0719fe0375407b304d17b2d6760940e06cfa (diff) | |
download | vdr-c19ad04a214169430f2db45f631c3d49dbcb6af9.tar.gz vdr-c19ad04a214169430f2db45f631c3d49dbcb6af9.tar.bz2 |
DVD support is now optional
Diffstat (limited to 'dvd.h')
-rw-r--r-- | dvd.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -6,12 +6,14 @@ * * Initially written by Andreas Schultz <aschultz@warp10.net> * - * $Id: dvd.h 1.2 2001/08/05 15:00:23 kls Exp $ + * $Id: dvd.h 1.3 2001/08/05 16:00:57 kls Exp $ */ #ifndef __DVD_H #define __DVD_H +#ifdef DVDSUPPORT + #include <dvdread/dvd_reader.h> #include <dvdread/ifo_types.h> #include <dvdread/ifo_read.h> @@ -46,4 +48,6 @@ public: static cDVD *getDVD(void); }; +#endif //DVDSUPPORT + #endif //__DVD_H |