summaryrefslogtreecommitdiff
path: root/libstore
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1996-08-21 18:45:13 +0000
committerMiles Bader <miles@gnu.org>1996-08-21 18:45:13 +0000
commit1f8a0718257b154e3c9472b13306bca77e7467ed (patch)
tree8461362155bc1bb8bb6abae413c6cb1b6657c4c6 /libstore
parentb704b46ab017f8e48ec9c79f0db4b028553ebec9 (diff)
(struct store_argp_params): Add return_args, args, & args_len fields.
Diffstat (limited to 'libstore')
-rw-r--r--libstore/store.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libstore/store.h b/libstore/store.h
index 84e8aae3..69b650f8 100644
--- a/libstore/store.h
+++ b/libstore/store.h
@@ -406,8 +406,15 @@ struct store_argp_params
upon which store_create has failed. */
int no_file_io : 1;
+ /* If true, then fill in ARGS & ARGS_LEN with appropiate arguments. */
+ int return_args : 1;
+
/* Parsed store returned here. */
struct store *result;
+
+ /* Arguments used to specify this store, in argz format. */
+ char *args;
+ size_t args_len;
};
#endif /* __STORE_H__ */