aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine-backend.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2014-01-07 16:59:59 +0000
committerWerner Koch <[email protected]>2014-01-07 16:59:59 +0000
commitab6e718327451e418782990c5a0a4e72588e3f0b (patch)
tree19beebc0ca982828f98b55a5a501c5fb866742c1 /src/engine-backend.h
parentMake gpgme_new return a proper error if no engines are installed. (diff)
downloadgpgme-ab6e718327451e418782990c5a0a4e72588e3f0b.tar.gz
gpgme-ab6e718327451e418782990c5a0a4e72588e3f0b.zip
Make gpgconf engine work again - fixes 02ba35c1.
* src/gpgconf.c: Remove ENABLE_GPGCONF and move prototypes to ... * src/engine-backend.h: ... here. -- gpgconf is a required part for gpgme.
Diffstat (limited to 'src/engine-backend.h')
-rw-r--r--src/engine-backend.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/engine-backend.h b/src/engine-backend.h
index a768652c..7e6c0c12 100644
--- a/src/engine-backend.h
+++ b/src/engine-backend.h
@@ -136,4 +136,16 @@ extern struct engine_ops _gpgme_engine_ops_g13; /* Crypto VFS. */
extern struct engine_ops _gpgme_engine_ops_uiserver;
#endif
+
+/* Prototypes for extra functions in engine-gpgconf.c */
+gpgme_error_t _gpgme_conf_arg_new (gpgme_conf_arg_t *arg_p,
+ gpgme_conf_type_t type, const void *value);
+void _gpgme_conf_arg_release (gpgme_conf_arg_t arg, gpgme_conf_type_t type);
+gpgme_error_t _gpgme_conf_opt_change (gpgme_conf_opt_t opt, int reset,
+ gpgme_conf_arg_t arg);
+void _gpgme_conf_release (gpgme_conf_comp_t conf);
+gpgme_error_t _gpgme_conf_load (void *engine, gpgme_conf_comp_t *conf_p);
+
+
+
#endif /* ENGINE_BACKEND_H */