libopkg: flag package with SF_NEED_DETAIL in pkg_init_from_file()
[oweals/opkg-lede.git] / libopkg / opkg_cmd.h
index c597555c45258a2d99c417b76ec291fdf08edbd9..e23d773aec804a5ec4cdd20e9a95880a653c9ca3 100644 (file)
 #ifndef OPKG_CMD_H
 #define OPKG_CMD_H
 
-typedef int (*opkg_cmd_fun_t)(opkg_conf_t *conf, int argc, const char **argv);
+typedef int (*opkg_cmd_fun_t) (int argc, const char **argv);
 
-struct opkg_cmd
-{
-    char *name;
-    int requires_args;
-    opkg_cmd_fun_t fun;
+struct opkg_cmd {
+       const char *name;
+       int requires_args;
+       opkg_cmd_fun_t fun;
+       unsigned int pfm;       /* package field mask */
 };
 typedef struct opkg_cmd opkg_cmd_t;
 
 opkg_cmd_t *opkg_cmd_find(const char *name);
-int opkg_cmd_exec(opkg_cmd_t *cmd, opkg_conf_t *conf, int argc, 
-                  const char **argv, void *userdata);
-void opkg_print_error_list (opkg_conf_t *conf);
+int opkg_cmd_exec(opkg_cmd_t * cmd, int argc, const char **argv);
 
+extern int opkg_state_changed;
 #endif