aboutsummaryrefslogtreecommitdiff
path: root/src/default-applications.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/default-applications.c')
-rw-r--r--src/default-applications.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/default-applications.c b/src/default-applications.c
new file mode 100644
index 0000000..c389d32
--- /dev/null
+++ b/src/default-applications.c
@@ -0,0 +1,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;
+
+
+}