summaryrefslogtreecommitdiff
path: root/plugins/meego.c
diff options
context:
space:
mode:
authorMarcel Holtmann <marcel@holtmann.org>2010-03-07 14:46:59 -0800
committerMarcel Holtmann <marcel@holtmann.org>2010-03-07 14:46:59 -0800
commit5c3ce348db247e69b06663379266142f24afdd87 (patch)
tree1c6a2540b2a4f0ee425fe0c9e99aa6f35f174653 /plugins/meego.c
parent9da2f8434a60312d1b18cf3fb306cf368ab3b18c (diff)
downloadconnman-5c3ce348db247e69b06663379266142f24afdd87.tar.gz
connman-5c3ce348db247e69b06663379266142f24afdd87.tar.bz2
connman-5c3ce348db247e69b06663379266142f24afdd87.zip
Rename Moblin plugin to MeeGo features plugin
Diffstat (limited to 'plugins/meego.c')
-rw-r--r--plugins/meego.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/plugins/meego.c b/plugins/meego.c
new file mode 100644
index 00000000..49978fa9
--- /dev/null
+++ b/plugins/meego.c
@@ -0,0 +1,39 @@
+/*
+ *
+ * Connection Manager
+ *
+ * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2 as
+ * published by the Free Software Foundation.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ *
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#define CONNMAN_API_SUBJECT_TO_CHANGE
+#include <connman/plugin.h>
+
+static int meego_init(void)
+{
+ return 0;
+}
+
+static void meego_exit(void)
+{
+}
+
+CONNMAN_PLUGIN_DEFINE(meego, "MeeGo features plugin", VERSION,
+ CONNMAN_PLUGIN_PRIORITY_LOW, meego_init, meego_exit)