dir_common.h 679 Bytes
/*
 * dir_common.h: definitions and prototypes common for all plattforms with
 *               dir.c
 *
 * Copyright (C) 2006 Georg Steffers
 *
 * Author:    Georg Steffers [GST] <georg.steffers@aschendorff.de>
 * Developer:
 *
 * Changes (for this file only):
 *   (2006-06-12) [GST] Started this changelog...well the program is
 *                      ready since some weeks right now.
 */
#ifndef DIR_COMMON_H
#define DIR_COMMON_H

/* return values for get_dir_next */
#define GET_DIRENT_OK   0x00
#define NO_FILES_LEFT   0x01
#define GET_DIRENT_ERR  0x02

/* flags for symlink following */
#define FOLLOW_SYM      0x00
#define DONT_FOLLOW_SYM 0x01

#endif /* DIR_COMMON_H */