2f47076a9dbb09d7e5eb3f96cbd480e6d45e4498
[g2-sharing] / src / common.c
1 /*
2  * This file is part of sharing-plugin-template
3  *
4  * Copyright (C) 2008-2009 Nokia Corporation. All rights reserved.
5  *
6  * This maemo code example is licensed under a MIT-style license,
7  * that can be found in the file called "COPYING" in the root
8  * directory.
9  *
10  */
11
12 #include <stdio.h>
13 #include <glib.h>
14 #include <osso-log.h>
15 #include <sharing-http.h>
16 #include "common.h"
17
18 /**
19  * example_function:
20  * @username: Example parameter
21  * @password: Example parameter
22  *
23  * Example function
24  *
25  * Returns: Newly allocated string or %NULL
26  */
27 gchar* example_function (const gchar* username, const gchar* password)
28 {
29     return NULL;
30 }
31