Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.77 KB

usb_moded-modules.h

File metadata and controls

52 lines (39 loc) · 1.77 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
*/
/* module name definitions */
Jan 13, 2012
Jan 13, 2012
22
#define MODULE_MASS_STORAGE "g_mass_storage"
Aug 7, 2012
Aug 7, 2012
23
#define MODULE_FILE_STORAGE "g_file_storage"
Jan 13, 2012
Jan 13, 2012
24
#define MODULE_CHARGING "g_mass_storage luns=1 stall=0 removable=1"
Aug 7, 2012
Aug 7, 2012
25
#define MODULE_CHARGE_FALLBACK "g_file_storage luns=1 stall=0 removable=1"
Mar 22, 2011
Mar 22, 2011
26
#define MODULE_NONE "none"
Aug 6, 2012
Aug 6, 2012
27
#define MODULE_DEVELOPER "g_ether"
Jul 19, 2012
Jul 19, 2012
28
#define MODULE_MTP "g_ffs"
Mar 22, 2011
Mar 22, 2011
29
Aug 5, 2014
Aug 5, 2014
30
31
32
33
34
35
/* module loading init */
void usb_moded_module_ctx_init(void);
/* module loading context cleanup */
void usb_moded_module_ctx_cleanup(void);
Mar 22, 2011
Mar 22, 2011
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* load module */
int usb_moded_load_module(const char *module);
/* unload module */
int usb_moded_unload_module(const char *module);
/* find which module is loaded */
const char * usb_moded_find_module(void);
/* clean up modules when usb gets disconnected */
int usb_moded_module_cleanup(const char *module);
/* clean up to allow for switching */
int usb_moded_module_switch_prepare(int force);
/* check if the correct module is loaded or not and switch if not */
void check_module_state(const char *module_name);