diff options
Diffstat (limited to 'libopkg.h')
-rw-r--r-- | libopkg.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -25,6 +25,7 @@ #include "opkg_conf.h" #include "opkg_message.h" +#include "opkg_state.h" #include "args.h" #include "pkg.h" @@ -37,6 +38,7 @@ typedef int (*opkg_status_callback)(char *name, int istatus, char *desc, void *userdata); typedef char* (*opkg_response_callback)(char *question); typedef void (*opkg_download_progress_callback)(int percent, char *url); +typedef void (*opkg_state_changed_callback)(opkg_state_t state, const char *data); extern int opkg_op(int argc, char *argv[]); /* opkglib.c */ extern int opkg_init (opkg_message_callback mcall, @@ -79,7 +81,8 @@ extern opkg_message_callback opkg_cb_message; /* opkglib.c */ extern opkg_response_callback opkg_cb_response; extern opkg_status_callback opkg_cb_status; extern opkg_list_callback opkg_cb_list; -extern opkg_download_progress_callback opkg_cb_download_progress; /* ipkg_download.c */ +extern opkg_download_progress_callback opkg_cb_download_progress; /* opkg_download.c */ +extern opkg_state_changed_callback opkg_cb_state_changed; /* opkg_state.c */ extern void push_error_list(struct errlist **errors,char * msg); extern void reverse_error_list(struct errlist **errors); |