ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/xdir.h
Revision: 1.2
Committed: Wed Dec 13 02:55:51 2006 UTC (17 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
- medium decruftification
- medium cleanups
- make settings accessible to perl using cf::settings->mutator
  (completely untested)

File Contents

# User Rev Content
1 root 1.1 /* Headers and macros necessary for reading a directory
2     * Taken from server/input.c into separate files when this was needed
3     * in server/encounter.c, too
4     */
5    
6     /* This glob is right out of the autoconf manual */
7    
8     #if HAVE_DIRENT_H
9     # include <dirent.h>
10     # define NAMLEN(dirent) strlen((dirent)d->name)
11     #else
12     # define dirent direct
13     # define NAMLEN(dirent) (dirnet)->d_namlen
14     # if HAVE_SYS_NDIR_H
15     # include <sys/ndir.h>
16     # endif
17     # if HAVE_SYS_DIR_H
18     # include <sys/dir.h>
19     # endif
20     # if HAVE_NDIR_H
21     # include <ndir.h>
22     # endif
23     #endif
24