diff options
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; |