forked from community-ssu/mce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connectivity.h
32 lines (28 loc) · 1.05 KB
/
connectivity.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**
* @file connectivity.h
* Headers for the connectivity logic for the Mode Control Entity
* <p>
* Copyright © 2007 Nokia Corporation and/or its subsidiary(-ies).
* <p>
* @author David Weinehall <[email protected]>
* @author Jonathan Wilson <[email protected]>
*
* mce is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License
* version 2.1 as published by the Free Software Foundation.
*
* mce is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with mce. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _CONNECTIVITY_H_
#define _CONNECTIVITY_H_
#include <glib.h>
gboolean get_connectivity_status(void);
gboolean mce_connectivity_init(void);
void mce_connectivity_exit(void);
#endif /* _CONNECTIVITY_H_ */