(png_load): Ignore png-supplied background color.
[bpt/emacs.git] / src / ndir.h
index 9fe4983..d254b5c 100644 (file)
@@ -2,8 +2,11 @@
        <dir.h> -- definitions for 4.2BSD-compatible directory access
 
        last edit:      09-Jul-1983     D A Gwyn
-*/
 
+ * The code here is forced by the interface, and is not subject to
+ * copyright, constituting the only possible expression of the
+ * algorithm in this format.
+ */
 #ifdef VMS
 #ifndef FAB$C_BID
 #include <fab.h>
 #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 */
 
@@ -49,3 +56,6 @@ extern void           seekdir();
 extern void            closedir();
 
 #define rewinddir( dirp )      seekdir( dirp, 0L )
+
+/* arch-tag: aea50570-ffb7-43fd-b423-7743b10fbe6e
+   (do not change this comment) */