Changeset 661 for library/bdm/dirent.h

Show
Ignore:
Timestamp:
10/15/09 00:10:19 (15 years ago)
Author:
smidl
Message:

doc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • library/bdm/dirent.h

    r497 r661  
    22#define DIRENT_INCLUDED 
    33 
    4 /* 
     4/*! \file 
    55 
    66    Declaration of POSIX directory browsing functions and types for Win32. 
     
    1616#endif 
    1717 
     18        //!DIR 
    1819        typedef struct DIR DIR; 
    1920 
     21        //! dirent 
    2022        struct dirent { 
    2123                char *d_name; 
    2224        }; 
    2325 
     26        //! Unix opendir function 
    2427        DIR           *opendir ( const char * ); 
     28        //! Unix closedir function 
    2529        int           closedir ( DIR * ); 
     30        //! Unix readdir function 
    2631        struct dirent *readdir ( DIR * ); 
     32        //! Unix rewinddir function 
    2733        void          rewinddir ( DIR * ); 
    2834