X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/disorder/blobdiff_plain/681103026e308772b67867c6a4fbac1f0692faa2..ec7109f36e878732d30e592279c2b160b28e6955:/disobedience/disobedience.h diff --git a/disobedience/disobedience.h b/disobedience/disobedience.h index f709a27..91d07de 100644 --- a/disobedience/disobedience.h +++ b/disobedience/disobedience.h @@ -53,6 +53,7 @@ #include #include #include +#include /* Types ------------------------------------------------------------------- */ @@ -60,28 +61,6 @@ struct queuelike; struct choosenode; struct progress_window; -/** @brief Callback data structure - * - * This program is extremely heavily callback-driven. Rather than have - * numerous different callback structures we have a single one which can be - * interpreted adequately both by success and error handlers. - */ -struct callbackdata { - void (*onerror)(struct callbackdata *cbd, - int code, - const char *msg); /* called on error */ - union { - const char *key; /* gtkqueue.c op_part_lookup */ - struct choosenode *choosenode; /* gtkchoose.c got_files/got_dirs */ - struct queuelike *ql; /* gtkqueue.c queuelike_completed */ - struct prefdata *f; /* properties.c */ - const char *user; /* users.c */ - struct { - const char *user, *email; /* users.c */ - } edituser; - } u; -}; - /** @brief Per-tab callbacks * * Some of the options in the main menu depend on which tab is displayed, so we @@ -232,7 +211,7 @@ void choose_update(void); /* Called when we think the choose tree might need updating */ void play_completed(void *v, - const char *error); + const char *err); /* Login details */