home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / education / a / biology1 / !Biology1 / h / prompts < prev    next >
Text File  |  1991-12-03  |  689b  |  32 lines

  1. /* prompts.h */
  2.  
  3. #ifndef __wimp_h
  4.  #include "wimp.h"
  5. #endif
  6.  
  7. #ifndef __input_h
  8.  #include "input.h"
  9. #endif   
  10.  
  11. #ifndef __data_h
  12.  #include "data.h"
  13. #endif                                            
  14.  
  15. extern int standard_line;  /* standard line length for test */
  16.  
  17. void *prompt_YNTF (wimp_w wnd, int line, char *corr_let);
  18.  
  19. void *prompt_string (wimp_w wnd, int line, int length, string str, int res_type);
  20.  
  21. void *prompt_ok (wimp_w wnd, int line, char *prompt);
  22.  
  23. void prompt_ok_delete (wimp_w wnd);
  24.  
  25. char *ans_YNTF (char *correct_ans); 
  26.  
  27. void *prompt_choice (wimp_w wnd, int line, question *curr_quest,
  28.                      int quest_no, int test_type);
  29.                                     
  30.  
  31.  
  32.