diff options
author | Tim Champagne <tchamp@users.sourceforge.net> | 2003-05-16 15:07:35 +0000 |
---|---|---|
committer | Tim Champagne <tchamp@users.sourceforge.net> | 2003-05-16 15:07:35 +0000 |
commit | 19b954f40ce05dbb781810206de6ca38fa47eb76 (patch) | |
tree | b6be89f7b8a9acc651a5f4edcb07ce7631bdcc99 /src/input/input_dvd.c | |
parent | 02d7b2575a8672138dd4f088bd829f5ae7383310 (diff) | |
download | xine-lib-19b954f40ce05dbb781810206de6ca38fa47eb76.tar.gz xine-lib-19b954f40ce05dbb781810206de6ca38fa47eb76.tar.bz2 |
Fix win32 build and start adding additional plugin support
CVS patchset: 4867
CVS date: 2003/05/16 15:07:35
Diffstat (limited to 'src/input/input_dvd.c')
-rw-r--r-- | src/input/input_dvd.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 370db25a0..d23301aca 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -18,7 +18,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: input_dvd.c,v 1.162 2003/05/14 16:47:20 mroi Exp $ + * $Id: input_dvd.c,v 1.163 2003/05/16 15:07:36 tchamp Exp $ * */ @@ -42,11 +42,12 @@ #include <stddef.h> #ifndef _MSC_VER -#include <dirent.h> #include <sys/param.h> +#endif /* _MSC_VER */ + #include <sys/types.h> #include <sys/stat.h> -#endif /* _MSC_VER */ +#include <dirent.h> #include <unistd.h> #include <fcntl.h> @@ -1628,6 +1629,9 @@ static void *init_class (xine_t *xine, void *data) { /* * $Log: input_dvd.c,v $ + * Revision 1.163 2003/05/16 15:07:36 tchamp + * Fix win32 build and start adding additional plugin support + * * Revision 1.162 2003/05/14 16:47:20 mroi * just to play it safe * |