diff options
author | Reiko Asakura | 2021-04-18 23:19:06 -0400 |
---|---|---|
committer | Reiko Asakura | 2021-04-18 23:19:06 -0400 |
commit | 5c310d1fef9ab7fc92721bb283ee94fd88075deb (patch) | |
tree | a00e52ff48da1ac976da79ce370300a8212347bc /include/kernel/npdrm.h | |
parent | Add SceNpKdc functions (diff) | |
download | vds-libraries-5c310d1fef9ab7fc92721bb283ee94fd88075deb.tar.gz |
Add prototype for sceNpDrmGetRifPspKey
Diffstat (limited to '')
-rw-r--r-- | include/kernel/npdrm.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/kernel/npdrm.h b/include/kernel/npdrm.h index 11bf43f..99a6772 100644 --- a/include/kernel/npdrm.h +++ b/include/kernel/npdrm.h @@ -61,6 +61,19 @@ int sceNpDrmGetFixedRifName(char *name, SceUInt64 aid); * @param[in] license - The pointer of license data. see:SceNpDrmLicense * @param[out] klicense - The pointer of klicense output buffer. size is 0x10. * @param[out] flags - The pointer of flags output. + * @param[out] lic_start_time - The pointer of license start time output. + * @param[out] lic_exp_time - The pointer of license exp time output. + * + * @return 0 on success, < 0 on error. +*/ +int sceNpDrmGetRifPspKey(const void *license, void *klicense, int *flags, SceUInt64 *lic_start_time, SceUInt64 *lic_exp_time); + +/** + * Get license key info + * + * @param[in] license - The pointer of license data. see:SceNpDrmLicense + * @param[out] klicense - The pointer of klicense output buffer. size is 0x10. + * @param[out] flags - The pointer of flags output. * @param[out] sku_flags - The pointer of sku flags output. * @param[out] lic_start_time - The pointer of license start time output. * @param[out] lic_exp_time - The pointer of license exp time output. |