home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 6 File / 06-File.zip / DU_DF2.ZIP / DIR.H < prev    next >
Text File  |  1991-03-18  |  241b  |  16 lines

  1.  
  2. #ifndef STRUCT_DIR_LL
  3.  
  4. #define STRUCT_DIR_LL
  5.  
  6. struct dir_ll {
  7.     struct dir_ll *next;
  8.     struct _FILEFINDBUF2 dir_entry;
  9. };
  10.  
  11. int           opendir( char *);
  12. struct dir_ll *readdir();
  13. int           closedir();
  14.  
  15. #endif
  16.