home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 January / VPR0101A.BIN / OLS / TAR32053 / tar32053.exe / SRC / GETDIR.H < prev    next >
C/C++ Source or Header  |  1999-05-23  |  267b  |  16 lines

  1. #ifndef __DEFCONF_H
  2. #include "defconf.h"
  3. #endif
  4. typedef struct flist {
  5.     struct flist *next;
  6. #ifdef    __TURBOC__
  7.     char name[1];
  8. #else
  9.     char name[0];
  10. #endif
  11. } FLIST;
  12.  
  13. extern FLIST *get_dir(char *dir);
  14. extern void free_dir(FLIST *p);
  15. extern int attri_flag;
  16.