history.c | 95 typedef int (*history_gfun_t)(void *, TYPE(HistEvent) *); typedef in typeref:typename:int (*)(void *,TYPE (HistEvent)*) 103 history_gfun_t h_first; /* Get the first element */ 104 history_gfun_t h_next; /* Get the next element */ 105 history_gfun_t h_last; /* Get the last element */ 106 history_gfun_t h_prev; /* Get the previous element */ 107 history_gfun_t h_curr; /* Get the current element */ 1124 hf.h_first = va_arg(va, history_gfun_t); 1125 hf.h_next = va_arg(va, history_gfun_t); 1126 hf.h_last = va_arg(va, history_gfun_t); 1127 hf.h_prev = va_arg(va, history_gfun_t); [all...] |