Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.32 KB

usb_moded-modesetting.h

File metadata and controls

37 lines (28 loc) · 1.32 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
22
/**
@file usb_moded-modesetting.h
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
*/
May 10, 2011
May 10, 2011
23
24
#include "usb_moded-dyn-config.h"
Apr 26, 2017
Apr 26, 2017
25
26
27
28
29
int write_to_file_real(const char *file, int line, const char *func, const char *path, const char *text);
#define write_to_file(path,text)\
write_to_file_real(__FILE__,__LINE__,__FUNCTION__,(path),(text))
Aug 7, 2012
Aug 7, 2012
30
int set_mtp_mode(void);
Jun 19, 2013
Jun 19, 2013
31
int set_dynamic_mode(void);
May 29, 2013
May 29, 2013
32
void unset_dynamic_mode(void);
Aug 23, 2012
Aug 23, 2012
33
/* clean up for the mode changes on disconnect */
Mar 22, 2011
Mar 22, 2011
34
int usb_moded_mode_cleanup(const char *module);
Apr 26, 2017
Apr 26, 2017
35
36
37
void usb_moded_mode_verify_values(void);
void usb_moded_mode_init(void);
void usb_moded_mode_quit(void);