aboutsummaryrefslogtreecommitdiffstats
path: root/op_vfs_mount.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2019-04-18 14:50:05 +0200
committerMattias Andrée <maandree@kth.se>2019-04-18 14:50:05 +0200
commit1166ccd674f398b02b6ef28f8032f83720235e77 (patch)
tree72a87c1ee7185cc66bc748a30e3c3af8a4eda015 /op_vfs_mount.c
downloadliberror-gpgme-1166ccd674f398b02b6ef28f8032f83720235e77.tar.gz
liberror-gpgme-1166ccd674f398b02b6ef28f8032f83720235e77.tar.bz2
liberror-gpgme-1166ccd674f398b02b6ef28f8032f83720235e77.tar.xz
First commit
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'op_vfs_mount.c')
-rw-r--r--op_vfs_mount.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/op_vfs_mount.c b/op_vfs_mount.c
new file mode 100644
index 0000000..81fc19a
--- /dev/null
+++ b/op_vfs_mount.c
@@ -0,0 +1,13 @@
+/* See LICENSE file for copyright and license details. */
+#include "internal.h"
+
+
+gpgme_error_t
+liberror_gpgme_op_vfs_mount(gpgme_ctx_t ctx, const char *container_file, const char *mount_dir,
+ unsigned int flags, gpgme_error_t *op_err)
+{
+ gpgme_error_t ret = gpgme_op_vfs_mount(ctx, container_file, mount_dir, flags, op_err);
+ if (ret)
+ liberror_gpgme_set_error("gpgme_op_vfs_mount", ret);
+ return ret;
+}