office-gobmx/dmake/msdos/dosdta.h
Jens-Heiner Rechtien b501a54cf9 initial import
2000-09-22 14:33:37 +00:00

16 lines
275 B
C

#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