opkg: add internal state framework
[oweals/opkg-lede.git] / libopkg.h
index 274e37b6fd4c837f3e6e71a6dbc7362d3795a12b..3430e1c326a7a01830018d579001640cd5f5cd03 100644 (file)
--- a/libopkg.h
+++ b/libopkg.h
@@ -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);