diff options
author | Luke Leighton <lkcl@samba.org> | 1999-10-29 21:31:19 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-10-29 21:31:19 +0000 |
commit | 8ba1c74002d04b2b2d0982ac78ae68e050bd5fa0 (patch) | |
tree | 9badbfa7e8cb38440cd6128e9f3070d4fec26d00 /source3/include | |
parent | bcf1c3182670f20f4705cfe73e27d1e2e9f8eedf (diff) | |
download | samba-8ba1c74002d04b2b2d0982ac78ae68e050bd5fa0.tar.gz samba-8ba1c74002d04b2b2d0982ac78ae68e050bd5fa0.tar.bz2 samba-8ba1c74002d04b2b2d0982ac78ae68e050bd5fa0.zip |
added gnu readline command-line completion to the regenum command.
(This used to be commit 50890516fdefe6db6cdadbf5b7a487aadf7796ec)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 173464f5b9..f7f54ab2ed 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -3200,7 +3200,7 @@ void cmd_sam_sync(struct client_info *info); /*The following definitions come from rpcclient/cmd_reg.c */ -void msrpc_reg_enum_key(struct cli_state *cli, const char* full_keyname, +BOOL msrpc_reg_enum_key(struct cli_state *cli, const char* full_keyname, REG_FN(reg_fn), REG_KEY_FN(reg_key_fn), REG_VAL_FN(reg_val_fn)); @@ -3396,6 +3396,7 @@ void display_sam_unk_ctr(FILE *out_hnd, enum action_type action, /*The following definitions come from rpcclient/rpcclient.c */ void rpcclient_init(void); +char *complete_remote_regenum(char *text, int state); char *complete_cmd(char *text, int state); char **completion_fn(char *text, int start, int end); char *complete_cmd_null(char *text, int state); |