home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / CONTRIB / MBASE / MBASE51.TAR / mbase51 / examples / example4.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.  * example4.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 EXAMPLE4_H
  10. #define EXAMPLE4_H
  11.  
  12. typedef struct
  13.    {
  14.    char     composer[20];     /* field composer type string length 20        */
  15.    char     piece[20];        /* field piece type string length 20           */
  16.    double   price;            /* field price type money                      */
  17.    } example4;
  18.  
  19. #endif
  20.  
  21.