X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=blobdiff_plain;f=libopkg%2Fopkg.h;h=c352331a858c3ae37ba0e1c68e2ef5cd07cfc2b4;hp=1295f51920212d9ccf78f7f0cea02ace4aeade3a;hb=371254054431baca18545c4e02c9e588e7d95a66;hpb=079a631d12f3d6ae6f33aef318a51799ea78027c diff --git a/libopkg/opkg.h b/libopkg/opkg.h index 1295f51..c352331 100644 --- a/libopkg/opkg.h +++ b/libopkg/opkg.h @@ -37,6 +37,8 @@ struct _opkg_package_t char *repository; char *description; char *tags; + char *url; + int size; int installed; }; @@ -48,7 +50,7 @@ struct _opkg_progress_data_t }; 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); +opkg_package_t* opkg_package_new_with_values (const char *name, const char *version, const char *arch, const char *desc, const char *tags, const char *url, int size, int installed); void opkg_package_free (opkg_package_t *package); opkg_t* opkg_new ();