mirror of https://github.com/MidnightCommander/mc
61 lines
1.7 KiB
C
61 lines
1.7 KiB
C
/*
|
|
* direct.h Defines the types and structures used by the directory routines
|
|
*
|
|
*/
|
|
#ifndef _DIRENT_H_incl
|
|
#define _DIRENT_H_incl
|
|
|
|
#ifdef __WATCOMC__
|
|
#include <direct.h>
|
|
|
|
#else
|
|
|
|
#ifdef __cplupplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
|
|
#define NAME_MAX 255 /* maximum filename for HPFS or NTFS */
|
|
|
|
typedef struct dirent {
|
|
void* d_handle;
|
|
unsigned d_attr; /* file's attribute */
|
|
unsigned short int d_time; /* file's time */
|
|
unsigned short int d_date; /* file's date */
|
|
long d_size; /* file's size */
|
|
char d_name[ NAME_MAX + 1 ]; /* file's name */
|
|
unsigned short d_ino; /* serial number (not used) */
|
|
char d_first; /* flag for 1st time */
|
|
} DIR;
|
|
|
|
#ifndef _A_NORMAL
|
|
#define _A_NORMAL 0x00 /* Normal file - read/write permitted */
|
|
#define _A_RDONLY 0x01 /* Read-only file */
|
|
#define _A_HIDDEN 0x02 /* Hidden file */
|
|
#define _A_SYSTEM 0x04 /* System file */
|
|
#define _A_VOLID 0x08 /* Volume-ID entry */
|
|
#define _A_SUBDIR 0x10 /* Subdirectory */
|
|
#define _A_ARCH 0x20 /* Archive file */
|
|
#endif //_A_NORMAL_
|
|
|
|
extern int chdir( const char *__path );
|
|
extern int closedir( DIR * );
|
|
/*
|
|
extern char *getcwd( char *__buf, unsigned __size );
|
|
extern unsigned _getdrive( void );
|
|
extern unsigned _getdiskfree( unsigned __drive, struct _diskfree_t *__diskspace);
|
|
*/
|
|
extern int mkdir( const char *__path );
|
|
extern DIR *opendir( const char * );
|
|
extern struct dirent *readdir( DIR * );
|
|
extern int rmdir( const char *__path );
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif //__WATCOMC__
|
|
|
|
#endif //incl
|