summaryrefslogtreecommitdiffstats
path: root/libopkg/opkg.h
diff options
context:
space:
mode:
authorticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:13:12 (EST)
committer ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358>2008-12-15 00:13:12 (EST)
commitb3d79de121685182a66900c82d35a10175971135 (patch)
treea7bb0a5f9134b542af06aa3543c0c6e8dba985f1 /libopkg/opkg.h
parentd1f5423230ce4b81db9c4433399c71065506dd82 (diff)
opkg: implement package listing in new libopkg
git-svn-id: http://opkg.googlecode.com/svn/trunk@90 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
Diffstat (limited to 'libopkg/opkg.h')
-rw-r--r--libopkg/opkg.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/libopkg/opkg.h b/libopkg/opkg.h
index b35635a..a6decd5 100644
--- a/libopkg/opkg.h
+++ b/libopkg/opkg.h
@@ -16,7 +16,26 @@
*/
typedef struct _opkg_t opkg_t;
+typedef struct _opkg_package_t opkg_package_t;
+
typedef void (*opkg_progress_callback_t) (opkg_t *opkg, int percentage, void *user_data);
+typedef void (*opkg_package_callback_t) (opkg_t *opkg, opkg_package_t *package, void *user_data);
+
+
+struct _opkg_package_t
+{
+ char *name;
+ char *version;
+ char *architecture;
+ char *repository;
+ char *description;
+ char *tags;
+ int installed;
+};
+
+opkg_package_t* opkg_package_new ();
+opkg_package_t* opkg_package_new_with_values (const char *name, const char *version, const char *arch, const char *desc, const char *tags, int installed);
+void opkg_package_free (opkg_package_t *package);
opkg_t* opkg_new ();
void opkg_free (opkg_t *opkg);
@@ -29,3 +48,5 @@ int opkg_remove_package (opkg_t *opkg, const char *package_name, opkg_progress_c
int opkg_upgrade_package (opkg_t *opkg, const char *package_name, opkg_progress_callback_t callback, void *user_data);
int opkg_upgrade_all (opkg_t *opkg, opkg_progress_callback_t callback, void *user_data);
int opkg_update_package_lists (opkg_t *opkg, opkg_progress_callback_t callback, void *user_data);
+
+int opkg_list_packages (opkg_t *opkg, opkg_package_callback_t callback, void *user_data);