diff options
author | TheOfficialFloW | 2016-10-18 15:53:35 +0200 |
---|---|---|
committer | xyzz | 2016-10-18 16:53:35 +0300 |
commit | f33d7b9eb3ead01fa29196fb962848ec888029a8 (patch) | |
tree | 90d07928e313e6ed182eec14d2067fb5d2a12bd7 /include | |
parent | Merge pull request #63 from d3m3vilurr/update-actuator-struct (diff) | |
download | vds-libraries-f33d7b9eb3ead01fa29196fb962848ec888029a8.tar.gz |
Added sceAppMgrUmount (#66)
Diffstat (limited to 'include')
-rw-r--r-- | include/user/appmgr.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index a0bea65..1b07446 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -128,6 +128,11 @@ int sceAppMgrWorkDirMount(int id, char *mount_point); //! id: 205 (cache0), 207 (td) int sceAppMgrWorkDirMountById(int id, char *titleid, char *mount_point); +//! Unmount a mountpoint +//! Unmount app0: for example to enable write access to ux0:app/TITLEID +//! Returns 0 on success +int sceAppMgrUmount(const char *mount_point); + #ifdef __cplusplus } #endif |