Home | History | Annotate | Download | only in src

Lines Matching full:history_gfun_t

61 typedef int (*history_gfun_t)(void *, TYPE(HistEvent) *);
69 history_gfun_t h_first; /* Get the first element */
70 history_gfun_t h_next; /* Get the next element */
71 history_gfun_t h_last; /* Get the last element */
72 history_gfun_t h_prev; /* Get the previous element */
73 history_gfun_t h_curr; /* Get the current element */
1044 hf.h_first = va_arg(va, history_gfun_t);
1045 hf.h_next = va_arg(va, history_gfun_t);
1046 hf.h_last = va_arg(va, history_gfun_t);
1047 hf.h_prev = va_arg(va, history_gfun_t);
1048 hf.h_curr = va_arg(va, history_gfun_t);