blob: a17482901b0f733300cd14993863f2e2e1fb6c66 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_USER_MTPIF_H
#define _VDSUITE_USER_MTPIF_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* Start MTP driver
*
* @param[in] flags - Set to 1
*
* @return 0 on success, < 0 on error.
*/
int sceMtpIfStartDriver(int flags);
/**
* Stop MTP driver
*
* @param[in] flags - Set to 1
*
* @return 0 on success, < 0 on error.
*/
int sceMtpIfStopDriver(int flags);
#ifdef __cplusplus
}
#endif
#endif /* _VDSUITE_USER_MTPIF_H */
|