Skip to content

Latest commit

 

History

History
42 lines (35 loc) · 1.51 KB

usb_moded-systemd.h

File metadata and controls

42 lines (35 loc) · 1.51 KB
 
Jun 5, 2013
Jun 5, 2013
1
/*
Aug 24, 2018
Aug 24, 2018
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
* Copyright (C) 2013-2018 Jolla Oy. All rights reserved.
*
* author: Philippe De Swert <philippe.deswert@njollamobile.com>
* author: Simo Piiroinen <simo.piiroinen@jollamobile.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
*/
Jun 5, 2013
Jun 5, 2013
21
Aug 24, 2018
Aug 24, 2018
22
23
#ifndef USB_MODED_SYSTEMD_H_
# define USB_MODED_SYSTEMD_H_
Jun 5, 2013
Jun 5, 2013
24
Aug 24, 2018
Aug 24, 2018
25
26
27
/* ========================================================================= *
* Constants
* ========================================================================= */
Jun 5, 2013
Jun 5, 2013
28
Aug 24, 2018
Aug 24, 2018
29
30
# define SYSTEMD_STOP "StopUnit"
# define SYSTEMD_START "StartUnit"
Jun 5, 2013
Jun 5, 2013
31
Aug 24, 2018
Aug 24, 2018
32
33
34
35
36
/* ========================================================================= *
* Prototypes
* ========================================================================= */
/* -- systemd -- */
Jun 5, 2013
Jun 5, 2013
37
Nov 7, 2016
Nov 7, 2016
38
gboolean systemd_control_service(const char *name, const char *method);
Aug 24, 2018
Aug 24, 2018
39
40
41
42
gboolean systemd_control_start (void);
void systemd_control_stop (void);
#endif /* USB_MODED_SYSTEMD_H_ */