aboutsummaryrefslogtreecommitdiffstats
path: root/assuan/assuan.h
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2001-11-06 19:14:14 +0000
committerWerner Koch <[email protected]>2001-11-06 19:14:14 +0000
commit4fcb72b3827f4ddc2acac031c4129b29ca4619e0 (patch)
tree93ebca8b7b6d0d66b2692717e65056c146448d6d /assuan/assuan.h
parentFirst chunk of code for the Assuan library (diff)
downloadgnupg-4fcb72b3827f4ddc2acac031c4129b29ca4619e0.tar.gz
gnupg-4fcb72b3827f4ddc2acac031c4129b29ca4619e0.zip
gpgsm does now build and a dummy server can be started.
Diffstat (limited to 'assuan/assuan.h')
-rw-r--r--assuan/assuan.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/assuan/assuan.h b/assuan/assuan.h
index 6fa0952a7..b70b1613d 100644
--- a/assuan/assuan.h
+++ b/assuan/assuan.h
@@ -76,8 +76,8 @@ int assuan_register_command (ASSUAN_CONTEXT ctx,
/*-- assuan-pipe-server.c --*/
-
-
+int assuan_init_pipe_server (ASSUAN_CONTEXT *r_ctx, int filedes[2]);
+void assuan_deinit_pipe_server (ASSUAN_CONTEXT ctx);
/*-- assuan-util.c --*/
@@ -85,6 +85,8 @@ void assuan_set_malloc_hooks ( void *(*new_alloc_func)(size_t n),
void *(*new_realloc_func)(void *p, size_t n),
void (*new_free_func)(void*) );
+/*-- assuan-errors.c (built) --*/
+const char *assuan_strerror (AssuanError err);
#ifdef __cplusplus