home *** CD-ROM | disk | FTP | other *** search
- /* throwback.h - headerfile for throwback library */
- /* GTK 09.09.1992 */
-
- /* strdup prototype, not necessary for throwback, but for main.c */
- extern char *strdup(char *);
-
- /* start throwback session */
- extern void throwback_start(void);
-
- /* end throwback session */
- extern void throwback_end(void);
-
- /* tell throwback module (and this library) which file we're
- * currently processing */
- extern void throwback_processing(char *pathname);
-
- /* signal an error to the throwback-handling task */
- extern void throwback_error(int lineno, int severity, char *description);
-
- /* just issue a plain info message */
- extern void throwback_info(int lineno, char *description);
-