Skip to content

Latest commit

 

History

History
56 lines (48 loc) · 2.2 KB

usb_moded-worker.h

File metadata and controls

56 lines (48 loc) · 2.2 KB
 
1
2
3
/**
* @file usb_moded-worker.h
*
Apr 9, 2019
Apr 9, 2019
4
* Copyright (C) 2013-2019 Jolla. All rights reserved.
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
*
* @author: Philippe De Swert <philippe.deswert@jollamobile.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
*/
#ifndef USB_MODED_WORKER_H_
# define USB_MODED_WORKER_H_
# include <stdbool.h>
Sep 5, 2018
Sep 5, 2018
29
30
# include "usb_moded-dyn-config.h"
31
32
33
34
35
36
37
38
/* ========================================================================= *
* Constants
* ========================================================================= */
/* ========================================================================= *
* Prototypes
* ========================================================================= */
Apr 9, 2019
Apr 9, 2019
39
40
41
42
/* ------------------------------------------------------------------------- *
* WORKER
* ------------------------------------------------------------------------- */
Apr 9, 2019
Apr 9, 2019
43
44
45
46
47
bool worker_bailing_out (void);
const char *worker_get_kernel_module (void);
bool worker_set_kernel_module (const char *module);
void worker_clear_kernel_module (void);
const modedata_t *worker_get_usb_mode_data (void);
Apr 9, 2019
Apr 9, 2019
48
modedata_t *worker_dup_usb_mode_data (void);
Apr 9, 2019
Apr 9, 2019
49
50
51
52
53
54
void worker_set_usb_mode_data (const modedata_t *data);
void worker_request_hardware_mode(const char *mode);
void worker_clear_hardware_mode (void);
bool worker_init (void);
void worker_quit (void);
void worker_wakeup (void);
55
56
#endif /* USB_MODED_WORKER_H_ */