forked from nemomobile/mce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
modetransition.h
37 lines (32 loc) · 1.28 KB
/
modetransition.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
33
34
35
36
37
/**
* @file modetransition.h
* Headers for the mode transition component of the Mode Control Entity
* <p>
* Copyright © 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
* <p>
* @author David Weinehall <[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 _MODETRANSITION_H_
#define _MODETRANSITION_H_
#include <glib.h>
/** Path to the boot detection file */
#define MCE_BOOTUP_FILENAME G_STRINGIFY(MCE_RUN_DIR) "/boot"
#define SPLASH_DELAY 500 /**< 0.5 seconds */
#define ACTDEAD_DELAY 1500 /**< 1.5 seconds */
#define POWERUP_DELAY 3500 /**< 3.5 seconds */
/* When MCE is made modular, this will be handled differently */
gboolean mce_mode_init(void);
void mce_mode_exit(void);
#endif /* _MODETRANSITION_H_ */