Skip to content

Commit

Permalink
add missing arguments to scePsmDrmGetRifKey
Browse files Browse the repository at this point in the history
change it to uint64[2]

it's actually uint64[2]
  • Loading branch information
LiEnby committed Aug 9, 2024
1 parent 3a67a18 commit 3e22e49
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions include/psp2/npdrm.h
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,13 @@ int _sceNpDrmGetRifNameForInstall(char *rif_name, const void *rif_data, int unk)
*
* @param[out] keydata - Decrypted key data
*
* @param[in] flags - Unknown
* @param[out] flags - License flags
*
* @param[out] exp_time expire time output, [0] is start_date, [1] is end_date
*
* @return 0 on success, < 0 on error
*/
int scePsmDrmGetRifKey(const ScePsmDrmLicense *license_buf, char *keydata, int flags);
int scePsmDrmGetRifKey(const ScePsmDrmLicense *license_buf, char *keydata, int* flags, SceUInt64 exp_time[2]);

#ifdef __cplusplus
}
Expand Down

0 comments on commit 3e22e49

Please sign in to comment.