X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fextras%2Fdirent.c;h=599fde6741e88eb18d57ed11f66d96688b0e8618;hb=6ee1e193fd896ab9a4729fde14f009d9ce629815;hp=073cc137da51b24504f6acbfa6604f3fb4fc7dd8;hpb=3305b049e7f587b23359a1c9047fb5763d19c1dc;p=vlc diff --git a/src/extras/dirent.c b/src/extras/dirent.c index 073cc137da..599fde6741 100644 --- a/src/extras/dirent.c +++ b/src/extras/dirent.c @@ -1,14 +1,14 @@ /* * dirent.c * - * Derived from DIRLIB.C by Matt J. Weinstein + * Derived from DIRLIB.C by Matt J. Weinstein * This note appears in the DIRLIB.H * DIRLIB.H by M. J. Weinstein Released to public domain 1-Jan-89 * * Updated by Jeremy Bettis * Significantly revised and rewinddir, seekdir and telldir added by Colin * Peters - * + * * $Revision: 1.6 $ * $Author: sam $ * $Date: 2002/11/13 20:51:04 $ @@ -48,35 +48,35 @@ struct dirent { - long d_ino; /* Always zero. */ - unsigned short d_reclen; /* Always zero. */ - unsigned short d_namlen; /* Length of name in d_name. */ - char d_name[FILENAME_MAX]; /* File name. */ + long d_ino; /* Always zero. */ + unsigned short d_reclen; /* Always zero. */ + unsigned short d_namlen; /* Length of name in d_name. */ + char d_name[FILENAME_MAX]; /* File name. */ }; typedef struct { - /* disk transfer area for this dir */ - WIN32_FIND_DATA dd_dta; + /* disk transfer area for this dir */ + WIN32_FIND_DATA dd_dta; - /* dirent struct to return from dir (NOTE: this makes this thread - * safe as long as only one thread uses a particular DIR struct at - * a time) */ - struct dirent dd_dir; + /* dirent struct to return from dir (NOTE: this makes this thread + * safe as long as only one thread uses a particular DIR struct at + * a time) */ + struct dirent dd_dir; - /* findnext handle */ - HANDLE dd_handle; + /* findnext handle */ + HANDLE dd_handle; - /* + /* * Status of search: - * 0 = not started yet (next entry to read is first entry) - * -1 = off the end - * positive = 0 based index of next entry - */ - int dd_stat; - - /* given path for dir with search pattern (struct is extended) */ - char dd_name[1]; + * 0 = not started yet (next entry to read is first entry) + * -1 = off the end + * positive = 0 based index of next entry + */ + int dd_stat; + + /* given path for dir with search pattern (struct is extended) */ + char dd_name[1]; } DIR; /* @@ -85,7 +85,7 @@ typedef struct * Returns a pointer to a DIR structure appropriately filled in to begin * searching a directory. */ -DIR * +DIR * vlc_opendir (const CHAR *szPath) { DIR *nd;