home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / pc / source / mssup201.arc / DTA.H < prev    next >
Text File  |  1987-06-21  |  404b  |  20 lines

  1. /* dta.h */
  2.  
  3. /* Defines format of disk transfer address after DOS calls FindFirst and
  4.     FindNext */
  5.  
  6. struct dta_t {                    /* Format of info in DTA -- see above */
  7.     char junk[22];
  8.     int time;
  9.     int date;
  10.     long size;        
  11.     char fname[13];
  12.     char just_in_case[4];    /* in case DOS writes too much */
  13. };
  14.  
  15. #ifdef LINT_ARGS
  16. void fcbpath (struct dta_t *, char *, char *);
  17. #else
  18. void fcbpath ();
  19. #endif
  20.