From d63d3929de9f53c33f7de4f1c75d9bcc5846fa70 Mon Sep 17 00:00:00 2001 From: Ted Gould Date: Thu, 4 Mar 2010 00:13:50 -0600 Subject: Adding a small little function to find default applications. --- src/default-applications.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/default-applications.c (limited to 'src/default-applications.c') 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 +#include +#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; + + +} -- cgit v1.2.3