/* act_pully.h */ #define MAX_PULLY 4 struct pullyaction_type { char * name; }; struct pully_stat_type { char * name; int stat; }; extern const struct pully_stat_type pully_stat_table[]; extern const struct pullyaction_type pullyaction_table []; int pully_lookup (const char *name); int pully_stat_lookup (const char *name); char *pully_name_lookup (int value);