+1 with the changes below.

On Mar 18, 2010, at 5:22 AM, Domingo Alvarez Duarte wrote:
> ...
> ----
> /** signature of add_idle callback functions passed as parameters */
> typedef void (*Fl_Idle_Handler)(void*);

Add parameter name to typedef:

typedef void (*Fl_Idle_Handler)(void *data);

> /** signature of add_fd functions passed as parameters */
> typedef void (*Fl_fd_Handler)(int,void*);

Use uppercase here: Fl_FD_Handler

Also add parameter names:

typedef void (*Fl_FD_Handler)(int fd, void *data);

> /** signature of add_handler functions passed as parameters */
> typedef int (*Fl_add_Handler)(int);

Call this Fl_Event_Handler (which describes its usage).

Also add parameter names:

typedef int (*Fl_Event_Handler)(int event);

________________________________________
Michael Sweet, Easy Software Products



_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to