aboutsummaryrefslogtreecommitdiff
path: root/src/conversation/gnunet-conversation-gtk_import.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/conversation/gnunet-conversation-gtk_import.h')
-rw-r--r--src/conversation/gnunet-conversation-gtk_import.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/src/conversation/gnunet-conversation-gtk_import.h b/src/conversation/gnunet-conversation-gtk_import.h
new file mode 100644
index 00000000..759a5e07
--- /dev/null
+++ b/src/conversation/gnunet-conversation-gtk_import.h
@@ -0,0 +1,56 @@
1/*
2 This file is part of GNUnet.
3 (C) 2010-2014 Christian Grothoff (and other contributing authors)
4
5 GNUnet is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published
7 by the Free Software Foundation; either version 3, or (at your
8 option) any later version.
9
10 GNUnet is distributed in the hope that it will be useful, but
11 WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with GNUnet; see the file COPYING. If not, write to the
17 Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA.
19*/
20
21/**
22 * @file src/conversation/gnunet-conversation-gtk_contacts.h
23 * @brief handle requests from user to import new contacts
24 * @author yids
25 * @author hark
26 * @author Christian Grothoff
27 */
28#ifndef GNUNET_CONVERSATION_GTK_IMPORTS_H
29#define GNUNET_CONVERSATION_GTK_IMPORTS_H
30
31
32/**
33 * Add new contact to the address book.
34 *
35 * @param name
36 * @param address
37 */
38void
39GSC_add_contact (const gchar *name,
40 const gchar *address);
41
42
43/**
44 * Initialize the import subsystem.
45 */
46void
47GCG_IMPORT_init (void);
48
49
50/**
51 * Shutdown the import subsystem.
52 */
53void
54GCG_IMPORT_shutdown (void);
55
56#endif