diff options
author | Princess of Sleeping | 2020-06-26 21:32:02 +0900 |
---|---|---|
committer | GitHub | 2020-06-26 21:32:02 +0900 |
commit | 55725cf5ec61ac9b3685bc4952095475da5c9178 (patch) | |
tree | 54ea391c4683431e073e5c75efa1e30f0c369f93 /include/kernel/registrymgr.h | |
parent | Fix modulemgr two function arg name and document (diff) | |
download | vds-libraries-55725cf5ec61ac9b3685bc4952095475da5c9178.tar.gz |
Fix many args (#451)
Changes document and variable types
Diffstat (limited to '')
-rw-r--r-- | include/kernel/registrymgr.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/kernel/registrymgr.h b/include/kernel/registrymgr.h index 9428e5a..166fc3d 100644 --- a/include/kernel/registrymgr.h +++ b/include/kernel/registrymgr.h @@ -17,7 +17,7 @@ extern "C" { * * @return 0 on success, < 0 on error */ -int sceRegMgrGetKeyBin(const char *category, const char *name, void *buf, int size); +int sceRegMgrGetKeyBin(const char *category, const char *name, void *buf, SceSize size); /** * Get a key's information by category and name @@ -28,7 +28,7 @@ int sceRegMgrGetKeyBin(const char *category, const char *name, void *buf, int si * * @return 0 on success, < 0 on error */ -int sceRegMgrGetKeyInt(const char* category, const char* name, int* buf); +int sceRegMgrGetKeyInt(const char *category, const char *name, int *buf); /** * Get a key's information by category and name @@ -40,7 +40,7 @@ int sceRegMgrGetKeyInt(const char* category, const char* name, int* buf); * * @return 0 on success, < 0 on error */ -int sceRegMgrGetKeyStr(const char* category, const char* name, char* buf, const int size); +int sceRegMgrGetKeyStr(const char *category, const char *name, char *buf, SceSize size); /** * Set a key's information by category and name @@ -52,7 +52,7 @@ int sceRegMgrGetKeyStr(const char* category, const char* name, char* buf, const * * @return 0 on success, < 0 on error */ -int sceRegMgrSetKeyBin(const char *category, const char *name, void *buf, int size); +int sceRegMgrSetKeyBin(const char *category, const char *name, void *buf, SceSize size); /** * Set a key's information by category and name @@ -63,7 +63,7 @@ int sceRegMgrSetKeyBin(const char *category, const char *name, void *buf, int si * * @return 0 on success, < 0 on error */ -int sceRegMgrSetKeyInt(const char* category, const char* name, int buf); +int sceRegMgrSetKeyInt(const char *category, const char *name, int buf); /** * Set a key's information by category and name @@ -75,7 +75,7 @@ int sceRegMgrSetKeyInt(const char* category, const char* name, int buf); * * @return 0 on success, < 0 on error */ -int sceRegMgrSetKeyStr(const char* category, const char* name, char* buf, const int size); +int sceRegMgrSetKeyStr(const char *category, const char *name, char *buf, SceSize size); #ifdef __cplusplus } |