blob: 29c9b531d052169d498ec39aa0bb13f1208c4d47 (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
Vita Development Suite Libraries
*/
#ifndef _VDSUITE_USER_NP_NP_KDC_H
#define _VDSUITE_USER_NP_NP_KDC_H
#include <scetypes.h>
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
extern "C" {
#endif /* defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) */
int
sceNpKdcInit(
SceSize poolSize,
void *poolBase
);
int
sceNpKdcTerm(
void
);
int
sceNpKdcAbortReq(
void
);
int
sceNpKdcActivateConsole(
int *maxConsole,
int *currentConsole,
const char *epassword
);
int
sceNpKdcDeactivateConsole(
int *maxConsole,
int *currentConsole,
const char *epassword,
SceBool forceReq
);
int
sceNpKdcGetProductRif(
const char *productId,
const char *epassword,
void *rifBuf,
SceSize rifBufSize,
SceSize *rifSize,
int *maxConsole,
int *currentConsole
);
#if defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus)
}
#endif /* defined(_LANGUAGE_C_PLUS_PLUS)||defined(__cplusplus)||defined(c_plusplus) */
#endif /* _VDSUITE_USER_NP_NP_KDC_H */
|