home *** CD-ROM | disk | FTP | other *** search
- /* dta.h */
-
- /* Defines format of disk transfer address after DOS calls FindFirst and
- FindNext */
-
- struct dta_t { /* Format of info in DTA -- see above */
- char junk[22];
- int time;
- int date;
- long size;
- char fname[13];
- char just_in_case[4]; /* in case DOS writes too much */
- };
-
- #ifdef LINT_ARGS
- void fcbpath (struct dta_t *, char *, char *);
- #else
- void fcbpath ();
- #endif