aboutsummaryrefslogtreecommitdiff
path: root/src/default-applications.c
blob: c389d3273f8cde356c40770acd90d92ec8029901 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#include <glib.h>
#include <glib/gi18n.h>
#include "default-applications.h"

struct default_db_t {
	const gchar * desktop_file;
	const gchar * name;
};

struct default_db_t default_db[] = {
	{"evolution.desktop", N_("Mail")},
	{NULL, NULL}
};

const gchar *
get_default_name (gchar * desktop_path)
{

	return NULL;


}