Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Zortech C++ Language Reference - find the find structure, defined in dos.h, stores_ http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
   FIND             The  FIND  structure, defined  in  dos.h,  stores_
                    information returned by the findfirst and findnext
                    functions.


                    Definition:

                      struct FIND{      /* struct used by findfirst() and findnext()   */
                         char reserved[21];   /* reserved by DOS         */
                         char attribute;      /* attribute found (FA_XXXX)      */
                         unsigned time,date;   /* file's time and date         */
                         unsigned long size;   /* file's size            */
                         char name[13];      /* filename followed by 0 byte      */
                      };

                      struct find_t{   /* used by _dos_findfirst() and _dos_findnext()   */
                         char reserved[21];   /* reserved by DOS         */
                         char attrib;      /* attribute found (FA_XXXX)      */
                         unsigned wr_time,wr_date;   /* file's last write      */
                         unsigned long size;   /* file's size            */
                         char name[13];      /* filename followed by 0 byte      */
                      };

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson