aboutsummaryrefslogtreecommitdiffstats
path: root/common/common-defs.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/common-defs.h')
-rw-r--r--common/common-defs.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/common/common-defs.h b/common/common-defs.h
index 0a6403a2c..96d0a1f32 100644
--- a/common/common-defs.h
+++ b/common/common-defs.h
@@ -23,9 +23,12 @@
#define GNUPG_COMMON_COMMON_DEFS_H
/*-- ttyio.c --*/
-void tty_private_set_rl_hooks (void (*set_completer) (rl_completion_func_t*),
+void tty_private_set_rl_hooks (void (*init_stream) (FILE *),
+ void (*set_completer) (rl_completion_func_t*),
void (*inhibit_completion) (int),
- void (*cleanup_after_signal) (void) );
+ void (*cleanup_after_signal) (void),
+ char *(*readline_fun) (const char*),
+ void (*add_history_fun) (const char*));