home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / CONTRIB / MBASE / MBASE51.TAR / mbase51 / examples / example7.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-04  |  526 b   |  21 lines

  1. /*
  2.  * This header file was created to reflect the structure of the relation
  3.  * example7.rel; header built on Fri Sep 3 1993 at 8:17 pm.
  4.  *
  5.  * MetalBase 5.1 released January 1st, 1993 by Huan-Ti.
  6.  *
  7.  */
  8.  
  9. #ifndef EXAMPLE7_H
  10. #define EXAMPLE7_H
  11.  
  12. typedef struct
  13.    {
  14.    char     author[40];       /* field author type string length 40          */
  15.    char     title[50];        /* field title type string length 50           */
  16.    mchar    summary;          /* field summary type mchar                    */
  17.    } example7;
  18.  
  19. #endif
  20.  
  21.