Changeset View
Changeset View
Standalone View
Standalone View
lang/cpp/src/callbacks.cpp
Show All 35 Lines | |||||
#include <gpgme.h> | #include <gpgme.h> | ||||
#include <gpg-error.h> | #include <gpg-error.h> | ||||
#include <cassert> | #include <cassert> | ||||
#include <cerrno> | #include <cerrno> | ||||
#include <cstring> | #include <cstring> | ||||
#include <unistd.h> | #include <unistd.h> | ||||
#include <stdlib.h> | #ifndef _MSC_VER | ||||
#include <unistd.h> | |||||
#endif | |||||
static inline gpgme_error_t make_err_from_syserror() | static inline gpgme_error_t make_err_from_syserror() | ||||
{ | { | ||||
return gpgme_error_from_syserror(); | return gpgme_error_from_syserror(); | ||||
} | } | ||||
using GpgME::ProgressProvider; | using GpgME::ProgressProvider; | ||||
using GpgME::PassphraseProvider; | using GpgME::PassphraseProvider; | ||||
▲ Show 20 Lines • Show All 103 Lines • Show Last 20 Lines |