blob: 72050bf495b4a75ddeac5b1f12e1b16fdbf37a6a (
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
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_USER_BGAPPUTIL_H
#define _VDSUITE_USER_BGAPPUTIL_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* Errors
*/
#define SCE_BGAPPUTIL_ERROR_INVALID_ARG ((int)0x80106501)
/**
* Start BG application (eboot2.bin)
*
* @param[in] mode - must be 0
*
* @return 0 on success, <0 otherwise.
*/
int sceBgAppUtilStartBgApp(int mode);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* _VDSUITE_USER_BGAPPUTIL_H */
|