diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2009-02-17 12:23:01 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2009-02-17 12:23:01 +0000 |
commit | ca51ec323839598928fca85cec3bd3109fd32658 (patch) | |
tree | 8254fcc74770eff26c1e27576d4acb6313224b0a /src/apk_applet.h | |
parent | 6e55a18269f12458608d1259dd4b6391f48db3e2 (diff) | |
download | apk-tools-ca51ec323839598928fca85cec3bd3109fd32658.tar.gz apk-tools-ca51ec323839598928fca85cec3bd3109fd32658.tar.bz2 apk-tools-ca51ec323839598928fca85cec3bd3109fd32658.tar.xz apk-tools-ca51ec323839598928fca85cec3bd3109fd32658.zip |
db: allow more than one --repository arg
Diffstat (limited to 'src/apk_applet.h')
-rw-r--r-- | src/apk_applet.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/apk_applet.h b/src/apk_applet.h index 4fdce0d..dba5589 100644 --- a/src/apk_applet.h +++ b/src/apk_applet.h @@ -13,9 +13,16 @@ #define APK_APPLET_H #include <getopt.h> +#include "apk_defines.h" extern const char *apk_root; -extern const char *apk_repository; + +struct apk_repository_url { + struct list_head list; + const char *url; +}; + +extern struct apk_repository_url apk_repository_list; struct apk_applet { const char *name; |