about summary refs log tree commit diff stats
path: root/tests/pgp/stub_gpg.c
blob: 14cdfe968ddcf006df1e94e8f639493b3e32d1d5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include <glib.h>

#include "pgp/gpg.h"

void p_gpg_init(void) {}
void p_gpg_close(void) {}

GSList* p_gpg_list_keys(void)
{
    return NULL;
}

GHashTable*
p_gpg_fingerprints(void)
{
    return NULL;
}

const char* p_gpg_libver(void)
{
    return NULL;
}

void p_gpg_free_key(ProfPGPKey *key) {}