X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fcommon.c;fp=src%2Fcommon.c;h=2f47076a9dbb09d7e5eb3f96cbd480e6d45e4498;hb=3419a53b563d0cce238372985421a83504680760;hp=0000000000000000000000000000000000000000;hpb=8cef44b33a1ba4668fc56ab330a5c8c96f0d1486;p=sharing-cli diff --git a/src/common.c b/src/common.c new file mode 100644 index 0000000..2f47076 --- /dev/null +++ b/src/common.c @@ -0,0 +1,31 @@ +/* + * This file is part of sharing-plugin-template + * + * Copyright (C) 2008-2009 Nokia Corporation. All rights reserved. + * + * This maemo code example is licensed under a MIT-style license, + * that can be found in the file called "COPYING" in the root + * directory. + * + */ + +#include +#include +#include +#include +#include "common.h" + +/** + * example_function: + * @username: Example parameter + * @password: Example parameter + * + * Example function + * + * Returns: Newly allocated string or %NULL + */ +gchar* example_function (const gchar* username, const gchar* password) +{ + return NULL; +} +