summaryrefslogtreecommitdiffstats
path: root/libopkg.h
diff options
context:
space:
mode:
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-14 23:18:25 (EST)
committer ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-14 23:18:25 (EST)
commitb695d5b6e048f6b46e70b47f20072b91168159fc (patch)
treebd31b678312bbef36331e66a7c673d255f67f33e /libopkg.h
parent38b334757dc77eb614abc55c40ff37cb99686154 (diff)
opkg: add a download progress callback hook to libopkg
git-svn-id: http://opkg.googlecode.com/svn/trunk@10 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg.h')
-rw-r--r--libopkg.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libopkg.h b/libopkg.h
index 8920e38..429e3a1 100644
--- a/libopkg.h
+++ b/libopkg.h
@@ -36,6 +36,7 @@ typedef int (*opkg_list_callback)(char *name, char *desc, char *version,
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);
extern int opkg_op(int argc, char *argv[]); /* opkglib.c */
extern int opkg_init (opkg_message_callback mcall,
@@ -78,6 +79,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 void push_error_list(struct errlist **errors,char * msg);
extern void reverse_error_list(struct errlist **errors);
extern void free_error_list();