home *** CD-ROM | disk | FTP | other *** search
/ ARM Club 1 / ARM_CLUB_CD.iso / contents / apps / program / a / backthrow / !backthrow_h_throwback < prev    next >
Encoding:
Text File  |  1992-08-10  |  665 b   |  22 lines

  1. /* throwback.h - headerfile for throwback library */
  2. /* GTK 09.09.1992 */
  3.  
  4. /* strdup prototype, not necessary for throwback, but for main.c */
  5. extern char *strdup(char *);
  6.  
  7. /* start throwback session */
  8. extern void throwback_start(void);
  9.  
  10. /* end throwback session */
  11. extern void throwback_end(void);
  12.  
  13. /* tell throwback module (and this library) which file we're
  14.  * currently processing */
  15. extern void throwback_processing(char *pathname);
  16.  
  17. /* signal an error to the throwback-handling task */
  18. extern void throwback_error(int lineno, int severity, char *description);
  19.  
  20. /* just issue a plain info message */
  21. extern void throwback_info(int lineno, char *description);
  22.