home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / dots151.zip / GRAPHSRC.ZIP / CONFIG.H < prev    next >
C/C++ Source or Header  |  1990-07-04  |  444b  |  22 lines

  1. /*
  2.     config header file
  3. */
  4.  
  5. #ifndef CONFIG_H
  6. #define CONFIG_H
  7.  
  8. #define BOOLEAN        1
  9. #define CHARACTER    2
  10. #define STRING        3
  11. #define REAL        5
  12.  
  13. typedef struct 
  14.     {char        flag;        /* command line switch */
  15.     unsigned    type;        /* variable type (of those #defined above) */
  16.     int            *ask;        /* nonzero if user is still to be asked */
  17.     void        *var;        /* pointer to variable */
  18.     int            nvar;        /* # entries in var */
  19.     } PARAM;
  20.  
  21. #endif /* CONFIG_H */
  22.