From a2a2abf81aed287cb6eac18facdfa5f31cb41731 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 1 Nov 1994 08:24:29 +0000 Subject: (MAXNAMLEN) [WINDOWSNT]: Define as 255. --- src/ndir.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ndir.h b/src/ndir.h index 9fe498361c1..f02dfbd6703 100644 --- a/src/ndir.h +++ b/src/ndir.h @@ -22,7 +22,11 @@ #define MAXNAMLEN (DIR$S_NAME + 7) /* 80 plus room for version #. */ #define MAXFULLSPEC NAM$C_MAXRSS /* Maximum full spec */ #else +#ifdef WINDOWSNT +#define MAXNAMLEN 255 +#else /* not WINDOWSNT */ #define MAXNAMLEN 15 /* maximum filename length */ +#endif /* not WINDOWSNT */ #endif /* VMS */ /* NOTE: MAXNAMLEN must be one less than a multiple of 4 */ -- cgit v1.2.1