blob: cf2293c0da5396f8f86e307117e2765b585a52a8 (
plain)
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
26
27
28
29
30
|
#include "seen-db.h"
GHashTable * seendb = NULL;
void
seen_db_init(void)
{
if (seendb != NULL) {
return;
}
seendb = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL);
return;
}
void
seen_db_add (const gchar * desktop)
{
g_hash_table_insert(seendb,
g_strdup(desktop),
GINT_TO_POINTER(TRUE));
return;
}
gboolean
seen_db_seen (const gchar * desktop)
{
return GPOINTER_TO_INT(g_hash_table_lookup(seendb, desktop));
}
|