From b3d79de121685182a66900c82d35a10175971135 Mon Sep 17 00:00:00 2001 From: ticktock35 Date: Mon, 15 Dec 2008 00:13:12 -0500 Subject: opkg: implement package listing in new libopkg git-svn-id: http://opkg.googlecode.com/svn/trunk@90 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- (limited to 'libopkg/opkg.h') 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); -- cgit v0.9.1