aboutsummaryrefslogtreecommitdiffstats
path: root/op_vfs_create.c
diff options
context:
space:
mode:
Diffstat (limited to 'op_vfs_create.c')
-rw-r--r--op_vfs_create.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/op_vfs_create.c b/op_vfs_create.c
new file mode 100644
index 0000000..77005fe
--- /dev/null
+++ b/op_vfs_create.c
@@ -0,0 +1,12 @@
+/* See LICENSE file for copyright and license details. */
+#include "internal.h"
+
+
+gpgme_error_t
+liberror_gpgme_op_vfs_create(gpgme_ctx_t ctx, gpgme_key_t recp[], const char *container_file, unsigned int flags, gpgme_error_t *op_err)
+{
+ gpgme_error_t ret = gpgme_op_vfs_create(ctx, recp, container_file, flags, op_err);
+ if (ret)
+ liberror_gpgme_set_error("gpgme_op_vfs_create", ret);
+ return ret;
+}