blob: 4a2c78b32036343badce82870a63540ad35e4d51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef REPREPRO_SIGNATURE_P_H
#define REPREPRO_SIGNATURE_P_H
#ifdef HAVE_LIBGPGME
#include <gpg-error.h>
#include <gpgme.h>
extern gpgme_ctx_t context;
#endif
#include "globals.h"
#include "error.h"
#include "signature.h"
#ifdef HAVE_LIBGPGME
retvalue gpgerror(gpg_error_t err);
#endif
#endif
|