Tizen 2.0 release
[profile/ivi/obexd.git] / src / obexd.h
1 /*
2  *
3  *  OBEX Server
4  *
5  *  Copyright (C) 2007-2010  Marcel Holtmann <marcel@holtmann.org>
6  *
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  (at your option) any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #define OBEX_OPP        (1 << 1)
25 #define OBEX_FTP        (1 << 2)
26 #define OBEX_BIP        (1 << 3)
27 #define OBEX_PBAP       (1 << 4)
28 #define OBEX_IRMC       (1 << 5)
29 #define OBEX_PCSUITE    (1 << 6)
30 #define OBEX_SYNCEVOLUTION      (1 << 7)
31 #define OBEX_MAS        (1 << 8)
32
33 gboolean plugin_init(const char *pattern, const char *exclude);
34 void plugin_cleanup(void);
35
36 gboolean manager_init(void);
37 void manager_cleanup(void);
38
39 gboolean obex_option_auto_accept(void);
40 const char *obex_option_root_folder(void);
41 gboolean obex_option_symlinks(void);
42 const char *obex_option_capability(void);
43 #ifdef TIZEN_PATCH
44 void obex_option_set_root_folder(const char *root);
45 #endif