diff options
author | Princess of Sleeping | 2018-06-02 21:07:44 +0900 |
---|---|---|
committer | GitHub | 2018-06-02 21:07:44 +0900 |
commit | 60e77f2b24a9b0fef3227cee7e4f5e8d950d56fc (patch) | |
tree | f0fe9da64a25ae09b8fcad163496ebb46f3fdfba /include/user/vshbridge.h | |
parent | Merge pull request #319 from Princess-of-Sleeping/master (diff) | |
download | vds-libraries-60e77f2b24a9b0fef3227cee7e4f5e8d950d56fc.tar.gz |
Fix _vshIoMount
Diffstat (limited to 'include/user/vshbridge.h')
-rw-r--r-- | include/user/vshbridge.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/user/vshbridge.h b/include/user/vshbridge.h index dd8e935..9e8fa13 100644 --- a/include/user/vshbridge.h +++ b/include/user/vshbridge.h @@ -14,13 +14,13 @@ int _vshSblAimgrGetConsoleId(char CID[32]); /** * @param[in] id - mount id - * @param[in] unk1 - Unknown, set 0 + * @param[in] path - mount path * @param[in] permission - 1/RO 2/RW * @param[in] buf - work buffer * * @return 0 >= on success, < 0 on error. */ -int _vshIoMount(int id, int unk1, int permission, void* buf); +int _vshIoMount(int id, const char *path, int permission, void* buf); /** * @param[in] id - mount id |