Skip to content

Latest commit

 

History

History
53 lines (44 loc) · 1.76 KB

usb_moded-appsync.h

File metadata and controls

53 lines (44 loc) · 1.76 KB
 
Mar 22, 2011
Mar 22, 2011
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
Copyright (C) 2010 Nokia Corporation. All rights reserved.
author: Philippe De Swert <philippe.de-swert@nokia.com>
This program is free software; you can redistribute it and/or
modify it under the terms of the Lesser GNU General Public License
version 2 as published by the Free Software Foundation.
This program 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
General Public License for more details.
You should have received a copy of the Lesser GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
02110-1301 USA
*/
Mar 10, 2014
Mar 10, 2014
22
23
#define CONF_DIR_PATH "/etc/usb-moded/run"
#define CONF_DIR_DIAG_PATH "/etc/usb-moded/run-diag"
Mar 22, 2011
Mar 22, 2011
24
25
#define APP_INFO_ENTRY "info"
May 10, 2011
May 10, 2011
26
#define APP_INFO_MODE_KEY "mode"
Mar 22, 2011
Mar 22, 2011
27
28
#define APP_INFO_NAME_KEY "name"
#define APP_INFO_LAUNCH_KEY "launch"
Jun 5, 2013
Jun 5, 2013
29
#define APP_INFO_SYSTEMD_KEY "systemd"
Dec 11, 2013
Dec 11, 2013
30
#define APP_INFO_POST "post"
Mar 22, 2011
Mar 22, 2011
31
May 10, 2011
May 10, 2011
32
33
34
/**
* keep all the needed info together for launching an app
*/
Mar 22, 2011
Mar 22, 2011
35
36
typedef struct list_elem
{
May 10, 2011
May 10, 2011
37
38
39
40
41
/*@{*/
char *name; /* name of the app to launch */
char *mode; /* mode in which to launch the app */
char *launch; /* dbus launch command/address */
int active; /* marker to check if the app has started sucessfully */
Jun 5, 2013
Jun 5, 2013
42
int systemd; /* marker to know if we start it with systemd or not */
Dec 11, 2013
Dec 11, 2013
43
int post; /* marker to indicate when to start the app */
May 10, 2011
May 10, 2011
44
/*@}*/
Mar 22, 2011
Mar 22, 2011
45
46
}list_elem;
Mar 10, 2014
Mar 10, 2014
47
void readlist(int diag);
May 10, 2011
May 10, 2011
48
int activate_sync(const char *mode);
Dec 11, 2013
Dec 11, 2013
49
int activate_sync_post(const char *mode);
Apr 21, 2011
Apr 21, 2011
50
int mark_active(const gchar *name);
Mar 1, 2012
Mar 1, 2012
51
int appsync_stop(void);
Oct 22, 2013
Oct 22, 2013
52
53
void free_appsync_list(void);
void usb_moded_appsync_cleanup(void);