1 /*
2  * e-client-private.h
3  *
4  * Copyright (C) 2011 Red Hat, Inc. (www.redhat.com)
5  *
6  * This library is free software: you can redistribute it and/or modify it
7  * under the terms of the GNU Lesser General Public License as published by
8  * the Free Software Foundation.
9  *
10  * This library is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13  * for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public License
16  * along with this library. If not, see <http://www.gnu.org/licenses/>.
17  *
18  */
19 
20 #ifndef E_CLIENT_PRIVATE_H
21 #define E_CLIENT_PRIVATE_H
22 
23 #include <libedataserver/libedataserver.h>
24 
25 G_BEGIN_DECLS
26 
27 void		e_client_set_capabilities	(EClient *client, const gchar *capabilities);
28 void		e_client_set_readonly		(EClient *client, gboolean readonly);
29 void		e_client_set_online		(EClient *client, gboolean is_online);
30 
31 G_END_DECLS
32 
33 #endif /* E_CLIENT_PRIVATE_H */
34