diff options
author | TheOfficialFloW | 2020-01-18 20:19:16 +0100 |
---|---|---|
committer | GitHub | 2020-01-18 20:19:16 +0100 |
commit | 194053024ae5fbfabdf25ef92d43af04e892ce88 (patch) | |
tree | fff4bb3855d30d22455bfc515b43535fb133b260 /include/user/vshbridge.h | |
parent | libkernel variable exports (diff) | |
download | vds-libraries-194053024ae5fbfabdf25ef92d43af04e892ce88.tar.gz |
Added arg for vshIoUmount
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 d965bfa..a525c04 100644 --- a/include/user/vshbridge.h +++ b/include/user/vshbridge.h @@ -24,13 +24,13 @@ int _vshIoMount(int id, const char *path, int permission, void* buf); /** * @param[in] id - mount id - * @param[in] unk1 - Unknown, set 0 + * @param[in] force - Set to 1 to force umount * @param[in] unk2 - Unknown, set 0 * @param[in] unk3 - Unknown, set 0 * * @return 0 >= on success, < 0 on error. */ -int vshIoUmount(int id, int unk1, int unk2, int unk3); +int vshIoUmount(int id, int force, int unk2, int unk3); int vshIdStorageIsDirty(void); int vshIdStorageIsFormatted(void); |