Mercurial > libdvdnav.hg
diff remap.c @ 176:4e099155c968 src
Helping with the WIN32 port.
| author | jcdutton |
|---|---|
| date | Mon, 28 Apr 2003 16:29:22 +0000 |
| parents | b6834e6359cf |
| children | 6b67914ae021 |
line wrap: on
line diff
--- a/remap.c Mon Apr 28 15:32:19 2003 +0000 +++ b/remap.c Mon Apr 28 16:29:22 2003 +0000 @@ -21,8 +21,16 @@ #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"
