00001 /* 00002 * Headers for port/dirent.c, win32 native implementation of dirent functions 00003 * 00004 * src/include/port/win32_msvc/dirent.h 00005 */ 00006 00007 #ifndef _WIN32VC_DIRENT_H 00008 #define _WIN32VC_DIRENT_H 00009 struct dirent 00010 { 00011 long d_ino; 00012 unsigned short d_reclen; 00013 unsigned short d_namlen; 00014 char d_name[MAX_PATH]; 00015 }; 00016 00017 typedef struct DIR DIR; 00018 00019 DIR *opendir(const char *); 00020 struct dirent *readdir(DIR *); 00021 int closedir(DIR *); 00022 00023 #endif