diff options
author | Werner Koch <wk@gnupg.org> | 2010-08-18 21:25:15 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2010-08-18 21:25:15 +0200 |
commit | 34dde9666975c6c258a5983a5bc334d9b8b80a55 (patch) | |
tree | 35921e17de3f1564e86182755d0ca5fa027652d6 /tools/gpgconf.h | |
parent | Auto-start dirmngr. (diff) | |
download | gnupg2-34dde9666975c6c258a5983a5bc334d9b8b80a55.tar.xz gnupg2-34dde9666975c6c258a5983a5bc334d9b8b80a55.zip |
Fix regression in logging.
Add a registry key to enable catch-all remote debugging for W32.
Replace more stdio stuff by estream.
Diffstat (limited to 'tools/gpgconf.h')
-rw-r--r-- | tools/gpgconf.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/gpgconf.h b/tools/gpgconf.h index be9172aa6..3b8d80b0e 100644 --- a/tools/gpgconf.h +++ b/tools/gpgconf.h @@ -48,10 +48,10 @@ void gc_error (int status, int errnum, const char *fmt, ...); void gc_component_reload (int component); /* List all components that are available. */ -void gc_component_list_components (FILE *out); +void gc_component_list_components (estream_t out); /* List all programs along with their status. */ -void gc_check_programs (FILE *out); +void gc_check_programs (estream_t out); /* Find the component with the name NAME. Returns -1 if not found. */ @@ -62,19 +62,19 @@ int gc_component_find (const char *name); void gc_component_retrieve_options (int component); /* List all options of the component COMPONENT. */ -void gc_component_list_options (int component, FILE *out); +void gc_component_list_options (int component, estream_t out); /* Read the modifications from IN and apply them. */ -void gc_component_change_options (int component, FILE *in, FILE *out); +void gc_component_change_options (int component, estream_t in, estream_t out); /* Check the options of a single component. Returns 0 if everything is OK. */ -int gc_component_check_options (int component, FILE *out, +int gc_component_check_options (int component, estream_t out, const char *conf_file); /* Process global configuration file. */ int gc_process_gpgconf_conf (const char *fname, int update, int defaults, - FILE *listfp); + estream_t listfp); #endif /*GPGCONF_H*/ |