* keyboard.c (kbd_buffer_get_event): Null-check used_mouse_menu.
[bpt/emacs.git] / src / ndir.h
index 438d5c2..d7bac9d 100644 (file)
@@ -2,28 +2,18 @@
        <dir.h> -- definitions for 4.2BSD-compatible directory access
 
        last edit:      09-Jul-1983     D A Gwyn
-*/
-
-#ifdef VMS
-#ifndef FAB$C_BID
-#include <fab.h>
-#endif
-#ifndef NAM$C_BID
-#include <nam.h>
-#endif
-#ifndef RMS$_SUC
-#include <rmsdef.h>
-#endif
-#include "dir.h"
-#endif /* VMS */
+
+ * 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.
+ */
 
 #define DIRBLKSIZ      512             /* size of directory block */
-#ifdef VMS
-#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 /* VMS */
+#endif /* not WINDOWSNT */
        /* NOTE:  MAXNAMLEN must be one less than a multiple of 4 */
 
 struct direct                          /* data from readdir() */
@@ -49,3 +39,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) */