Find file buffer data structure.
typedef struct _FILEFINDBUF { FDATE fdateCreation; /* Date of file creation. */ FTIME ftimeCreation; /* Time of file creation. */ FDATE fdateLastAccess; /* Date of last access. */ FTIME ftimeLastAccess; /* Time of last access. */ FDATE fdateLastWrite; /* Date of last write. */ FTIME ftimeLastWrite; /* Time of last write. */ ULONG cbFile; /* Size of file. */ ULONG cbFileAlloc; /* Allocated size. */ USHORT attrFile; /* File attributes. */ UCHAR cchName; /* Length of file name. */ CHAR achName[CCHMAXPATHCOMP]; /* File name including null terminator. */ } FILEFINDBUF; typedef FILEFINDBUF * PFILEFINDBUF ;