home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / program / d / int_help / h / help
Encoding:
Text File  |  1991-07-28  |  293 b   |  12 lines

  1. /* Interative help for C programs
  2.    By Ben Summers
  3.    You may use this in any program you write
  4. */
  5.  
  6. #define help_MAX_HELP_TEXT 200
  7.  
  8. void help_init(BOOL load);
  9. void help_send(const char *win_name);
  10. void help_send_text(const char *text);
  11. BOOL help_dbox_help(dbox d, void *event, void *handle);
  12.