From 55725cf5ec61ac9b3685bc4952095475da5c9178 Mon Sep 17 00:00:00 2001 From: Princess of Sleeping Date: Fri, 26 Jun 2020 21:32:02 +0900 Subject: Fix many args (#451) Changes document and variable types--- include/user/vshbridge.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/user/vshbridge.h') diff --git a/include/user/vshbridge.h b/include/user/vshbridge.h index a525c04..db64be4 100644 --- a/include/user/vshbridge.h +++ b/include/user/vshbridge.h @@ -8,7 +8,7 @@ extern "C" { #endif -int _vshSblGetSystemSwVersion(SceKernelFwInfo * data); +int _vshSblGetSystemSwVersion(SceKernelFwInfo *data); int _vshSblAimgrGetConsoleId(char CID[32]); @@ -20,7 +20,7 @@ int _vshSblAimgrGetConsoleId(char CID[32]); * * @return 0 >= on success, < 0 on error. */ -int _vshIoMount(int id, const char *path, int permission, void* buf); +int _vshIoMount(int id, const char *path, int permission, void *buf); /** * @param[in] id - mount id @@ -42,7 +42,7 @@ int vshIdStorageIsReadOnly(void); * * @return 0 on success, < 0 on error. */ -int vshIdStorageReadLeaf(int leafnum, void *buf); +int vshIdStorageReadLeaf(SceSize leafnum, void *buf); /** * @param[in] leafnum - 0x0 ~ 0x80 / leafnum > 0x80 = error @@ -50,7 +50,7 @@ int vshIdStorageReadLeaf(int leafnum, void *buf); * * @return 0 on success, < 0 on error. */ -int vshIdStorageWriteLeaf(int leafnum, const void *buf); +int vshIdStorageWriteLeaf(SceSize leafnum, const void *buf); int vshSblAimgrIsCEX(void); int vshSblAimgrIsDEX(void); -- cgit v1.2.3