summaryrefslogtreecommitdiff
path: root/source3/utils/regedit.h
diff options
context:
space:
mode:
authorChris Davis <cd.rattan@gmail.com>2014-06-02 21:50:01 -0700
committerMichael Adam <obnox@samba.org>2014-10-01 14:32:08 +0200
commit0ab07cb8069ae59e45fb0f6016096d30de9b4142 (patch)
treefd510fbc909604f4c429feb7738bead4f13ac5bd /source3/utils/regedit.h
parentb8b83509ca080d48530fbde9b012b9c3eb1c42fe (diff)
downloadsamba-0ab07cb8069ae59e45fb0f6016096d30de9b4142.tar.gz
regedit: add search feature.
Open up a search input with '/'. 'x' key gets the next result. This patch also ensures that keys are always sorted, so that the search order matches the order the keys appear on screen. TODO: + flesh out search interface + find previous + search values Signed-off-by: Chris Davis <cd.rattan@gmail.com> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/utils/regedit.h')
-rw-r--r--source3/utils/regedit.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/source3/utils/regedit.h b/source3/utils/regedit.h
index 2ab40f9d69b..113f226ec6f 100644
--- a/source3/utils/regedit.h
+++ b/source3/utils/regedit.h
@@ -59,4 +59,17 @@ WERROR reg_open_samba3(TALLOC_CTX *mem_ctx, struct registry_context **ctx);
int regedit_getch(void);
+typedef bool (*regedit_search_match_fn_t)(const char *, const char *);
+
+struct regedit_search_opts {
+ const char *query;
+ regedit_search_match_fn_t match;
+ struct tree_node *node;
+ unsigned int search_key:1;
+ unsigned int search_value:1;
+ unsigned int search_recursive:1;
+ unsigned int search_relative:1;
+ unsigned int search_nocase:1;
+};
+
#endif