Adapt the MSDOS build to the latest changes on mainline.
[bpt/emacs.git] / src / ndir.h
index 438d5c2..cd7cdbe 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() */
@@ -42,10 +32,10 @@ typedef struct
        char    dd_buf[DIRBLKSIZ];      /* directory block */
        }       DIR;                    /* stream data from opendir() */
 
-extern DIR             *opendir();
-extern struct direct   *readdir();
-extern long            telldir();
-extern void            seekdir();
-extern void            closedir();
+extern DIR             *opendir (char *);
+extern struct direct   *readdir (DIR *);
+extern void            seekdir (DIR *, long);
+extern void            closedir (DIR *);
 
 #define rewinddir( dirp )      seekdir( dirp, 0L )
+