home *** CD-ROM | disk | FTP | other *** search
/ The CDPD Public Domain Collection for CDTV 4 / CDPD_IV.bin / utilities / hypertext / adtoht / source / readdir.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-22  |  306 b   |  11 lines

  1. struct FileNode
  2.    {
  3.       struct AnyNode Node;
  4.    };
  5.  
  6. extern struct FileNode *FileList;
  7.  
  8. BOOL AddFile(char *Directory, char *File);
  9. BOOL ReadDir(BPTR Directory, char *DirName, char *Extension, BOOL (*Function)(char *Name));
  10. /* Note: Function() is supposed to operate on the node pointed to by FileList */
  11.