office-gobmx/dmake/msdos/dosdta.h

17 lines
275 B
C
Raw Normal View History

2000-09-22 09:33:37 -05:00
#ifndef _DOSDTA_
#define _DOSDTA_
#include "stdmacs.h"
typedef struct {
char fcb[21];
char attr;
short time;
short date;
long size;
char name[13];
} DTA;
extern DTA *findfirst ANSI((char *, DTA *));
extern DTA *findnext ANSI((DTA *));
#endif