#ifndef FILELIST_H #define FILELIST_H /* File flags */ #define FILE_DIRECTORY 0x1 struct filelist_struct { char *name; unsigned int flags; struct filelist_struct *next; }; typedef struct filelist_struct FILELIST; #endif /* FILELIST_H */