Mercurial > hg > xemacs-beta
comparison src/ndir.h @ 410:de805c49cfc1 r21-2-35
Import from CVS: tag r21-2-35
author | cvs |
---|---|
date | Mon, 13 Aug 2007 11:19:21 +0200 |
parents | 74fd4e045ea6 |
children | 697ef44129c6 |
comparison
equal
deleted
inserted
replaced
409:301b9ebbdf3b | 410:de805c49cfc1 |
---|---|
25 | 25 |
26 #ifndef INCLUDED_ndir_h_ | 26 #ifndef INCLUDED_ndir_h_ |
27 #define INCLUDED_ndir_h_ | 27 #define INCLUDED_ndir_h_ |
28 | 28 |
29 #define DIRBLKSIZ 512 /* size of directory block */ | 29 #define DIRBLKSIZ 512 /* size of directory block */ |
30 #ifdef WINDOWSNT | 30 #ifdef WIN32_NATIVE |
31 #define MAXNAMLEN 255 | 31 #define MAXNAMLEN 255 |
32 #else /* not WINDOWSNT */ | 32 #else /* not WIN32_NATIVE */ |
33 #define MAXNAMLEN 15 /* maximum filename length */ | 33 #define MAXNAMLEN 15 /* maximum filename length */ |
34 #endif /* not WINDOWSNT */ | 34 #endif /* not WIN32_NATIVE */ |
35 /* NOTE: MAXNAMLEN must be one less than a multiple of 4 */ | 35 /* NOTE: MAXNAMLEN must be one less than a multiple of 4 */ |
36 | 36 |
37 struct direct /* data from readdir() */ | 37 struct direct /* data from readdir() */ |
38 { | 38 { |
39 long d_ino; /* inode number of entry */ | 39 long d_ino; /* inode number of entry */ |