* engine-gpgsm.c: Shuffle around header inclusion a bit, to still
keep them seperate.
(_gpgme_set_status_handler) [!ENABLE_GPGSM]: New function.
+2001-11-22 Marcus Brinkmann <marcus@gnu.org>
+
+ * engine-gpgsm.c: Shuffle around header inclusion a bit, to still
+ keep them seperate.
+ (_gpgme_set_status_handler) [!ENABLE_GPGSM]: New function.
+
2001-11-22 Werner Koch <wk@gnupg.org>
* engine-gpgsm.c: Include more headers so that NULL and mk_error
#define ENABLE_GPGSM 1
#endif
+#ifdef ENABLE_GPGSM
+
#include <sys/types.h>
#include <assert.h>
-#ifdef ENABLE_GPGSM
/* FIXME */
#include "../assuan/assuan-defs.h"
#undef xtrymalloc
#undef xtrycalloc
#undef xtryrealloc
#undef xfree
-#endif /*ENABLE_GPGSM*/
#include "gpgme.h"
#include "util.h"
#include "wait.h"
#include "io.h"
-#ifdef ENABLE_GPGSM
-
#include "engine-gpgsm.h"
#include "assuan.h"
#else /* ENABLE_GPGSM */
+#include <stddef.h>
+#include "util.h"
+
+#include "engine-gpgsm.h"
+
const char *
_gpgme_gpgsm_get_version (void)
{
return;
}
+void
+_gpgme_gpgsm_set_status_handler (GpgsmObject gpgsm,
+ GpgStatusHandler fnc, void *fnc_value)
+{
+ return;
+}
+
GpgmeError
_gpgme_gpgsm_op_verify (GpgsmObject gpgsm, GpgmeData sig, GpgmeData text)
{