home *** CD-ROM | disk | FTP | other *** search
/ Virtual Reality Zone / VRZONE.ISO / mac / PC / PCGLOVE / GLOVE / OBJGLV.ZIP / INCLUDE / DEMO4B / WORLD.HPP < prev   
C/C++ Source or Header  |  1993-03-10  |  439b  |  20 lines

  1. #include <stdio.h>
  2. #include "standard.hpp"
  3. #include "ini.hpp"
  4.  
  5. //Boolean read_world(InitFile & ini, Boolean is_config_file);
  6. Boolean read_world(FILE *in);
  7. typedef struct _name NAMEREF;
  8.  
  9. struct _name {
  10.     char *name;
  11.     void *value;
  12.     NAMEREF *next;
  13. };
  14.  
  15. char *find_value(NAMEREF *list, void *value);
  16.  
  17. int check_key(unsigned key);
  18. int check_controls(int x, int y, unsigned buttons);
  19. void *find_name(NAMEREF *list, char *name);
  20.