home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Interactive Guide / c-cplusplus-interactive-guide.iso / c_ref / csource4 / 235_01 / dosfile.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-06-18  |  640 b   |  17 lines

  1. /*  001  29-Jun-86  dosfile.h
  2.  
  3.         Header file for use with file.c.
  4.  
  5.         Copyright (c) 1986 by Blue Sky Software.  All rights reserved.
  6. */
  7.  
  8.  
  9. struct search_block {                  /* dos structure for file searching */
  10.    char context[21];                   /* dos context usage */
  11.    unsigned char attrib;               /* file entry attributes */
  12.    unsigned time;                      /* file time */
  13.    unsigned date;                      /* file date */
  14.    unsigned long size;                 /* file size */
  15.    char fn[13];                        /* dos file name */
  16. };
  17.