home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / virus / ddj0491.zip / MORROW.ZIP / PARAM.H < prev    next >
C/C++ Source or Header  |  1989-09-03  |  399b  |  26 lines

  1. /***
  2. *       GASystem
  3. *       Mike Morrow
  4. *       September 1989
  5. ***/
  6.  
  7. #include "table.h"
  8. #include "ga.h"
  9.  
  10. typedef int MODE;
  11.  
  12. typedef struct
  13. {
  14.     char *param_name;
  15.     void *param_where;
  16.     char param_mode;                /* MODEINT etc. */
  17.     char param_flags;                /* FLAG_RO etc. */
  18. }PARAMSPEC;
  19.  
  20.  
  21. #if __STDC__
  22. TBL_PTR paramins(CONST PARAMSPEC *spec, int type);
  23. #else
  24. TBL_PTR paramins();
  25. #endif
  26.