Add account name to distinguish multiple instances of service.
[sharing-cli] / src / send.h
1 /*
2  * This file is part of Command-Line Sharing Plugin
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 #ifndef _SEND_H_
13 #define _SEND_H_
14
15 #include <glib.h>
16 #include <sharing-transfer.h>
17 #include <sharing-entry.h>
18 #include <conicconnection.h>
19 #include <sharing-plugin-interface.h>
20
21 G_BEGIN_DECLS
22
23 SharingPluginInterfaceSendResult cli_send (SharingTransfer* transfer,
24     ConIcConnection* con, gboolean* dead_mans_switch);
25
26 G_END_DECLS
27
28 #endif // _SEND_H_
29