home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / dmake40.zip / msdos / dosdta.h < prev    next >
C/C++ Source or Header  |  1994-10-23  |  291b  |  17 lines

  1. #ifndef _DOSDTA_
  2. #define _DOSDTA_
  3.  
  4. #include "stdmacs.h"
  5. typedef struct {
  6.    char   fcb[21];
  7.    char   attr;
  8.    short  time;
  9.    short  date;
  10.    long   size;
  11.    char   name[13];
  12. } DTA;
  13.  
  14. extern DTA  *findfirst ANSI((char *, DTA *));
  15. extern DTA  *findnext  ANSI((DTA *));
  16. #endif
  17.