home *** CD-ROM | disk | FTP | other *** search
- /*
- ** FUNCLIST.H -- headers for function list routines
- **
- ** $Header: funclist.h,v 2.0 89/12/24 00:56:23 eric Exp $
- **
- ** Each entry in this list contains a pointer to a function to be
- ** invoked, and an integer argument to be passed to it.
- **
- ** Author:
- ** Eric Allman
- ** University of California, Berkeley
- */
-
- #ifndef FUNCLIST
-
- #ifndef _USEFUL_H_
- #include <useful.h>
- #endif
-
- #define FUNCLIST struct _funclist
-
- FUNCLIST
- {
- FUNCLIST *_fl_next; /* next in chain */
- VOID (*_fl_func)(); /* function to invoke */
- ARBPTR _fl_arg; /* first argument */
- };
-
- #define FUNCLISTNULL ((FUNCLIST *) NULL)
-
- #endif
-