blob: a77eb9462da10641920cd993b6ed84078c577423 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* See LICENSE file for copyright and license details. */
#include "internal.h"
gpgme_error_t
liberror_gpgme_op_interact(gpgme_ctx_t ctx, gpgme_key_t key, unsigned int flags,
gpgme_interact_cb_t fnc, void *fnc_value, gpgme_data_t out)
{
gpgme_error_t ret = gpgme_op_interact(ctx, key, flags, fnc, fnc_value, out);
if (ret)
liberror_gpgme_set_error("gpgme_op_interact", ret);
return ret;
}
|