diff options
author | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-04-29 15:58:27 +0000 |
---|---|---|
committer | James Courtier-Dutton <jcdutton@users.sourceforge.net> | 2003-04-29 15:58:27 +0000 |
commit | 12018188e9317c2092a3e12db8672b25b1e4bbad (patch) | |
tree | b8767c519dacf4b3ed86688070cb56dfd6923c7d /src/input/libdvdnav/remap.c | |
parent | a23c0fad73df02e6419a01a1c07923876c3e8436 (diff) | |
download | xine-lib-12018188e9317c2092a3e12db8672b25b1e4bbad.tar.gz xine-lib-12018188e9317c2092a3e12db8672b25b1e4bbad.tar.bz2 |
Update from the libdvdnav project.
CVS patchset: 4708
CVS date: 2003/04/29 15:58:27
Diffstat (limited to 'src/input/libdvdnav/remap.c')
-rw-r--r-- | src/input/libdvdnav/remap.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/input/libdvdnav/remap.c b/src/input/libdvdnav/remap.c index 154025528..3019c514a 100644 --- a/src/input/libdvdnav/remap.c +++ b/src/input/libdvdnav/remap.c @@ -15,14 +15,22 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: remap.c,v 1.2 2003/02/20 16:02:00 mroi Exp $ + * $Id: remap.c,v 1.3 2003/04/29 15:58:30 jcdutton Exp $ */ #include <stdlib.h> #include <string.h> #include <stdio.h> + +#ifndef _MSC_VER #include <sys/param.h> #include <sys/fcntl.h> +#else +#ifndef MAXPATHLEN +#define MAXPATHLEN 255 +#endif +#endif /* _MSC_VER */ + #include <assert.h> #include "remap.h" #include "dvdnav_internal.h" |