diff options
author | Reiko Asakura | 2021-03-10 22:00:50 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-03-10 22:00:50 -0500 |
commit | b7b08fb886780eb3675dd26bc49712d339d94d5f (patch) | |
tree | 215f76622c43aa4a82b556bb1568b9d9c18f3c4e /include/user/appmgr.h | |
parent | Add NIDs in SceCodecEngineUser (diff) | |
download | vds-libraries-b7b08fb886780eb3675dd26bc49712d339d94d5f.tar.gz |
Remove forwarded syscalls
The criteria for removal are
1. The syscall forwarder does not modify arguments or pass additional
arguments.
2. The syscall is not used outside of the syscall forwarder.
For the removed headers, appmgr.h is wrong, iofilemgr_syscall.h is
correct, and net_syscalls.h is unknown.
Diffstat (limited to '')
-rw-r--r-- | include/user/appmgr.h | 89 |
1 files changed, 0 insertions, 89 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index a3ee1fd..8fa22f3 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -13,41 +13,6 @@ extern "C" { #endif -typedef struct SceAppMgrSaveDataData { - int size; //!< Must be 0x4C - unsigned int slotId; //!< Save slot to use - SceAppMgrSaveDataSlotParam* slotParam; //!< Save slot params - uint8_t reserved[32]; //!< Reserved data - SceAppMgrSaveDataDataSaveItem* files; //!< Pointer to an array of files - int fileNum; //!< Number of files to save - SceAppMgrMountPoint mountPoint; //!< Savedata mountpoint - unsigned int* requiredSizeKB; //!< Required size in KBs -} SceAppMgrSaveDataData; - -typedef struct SceAppMgrSaveDataDataDelete { - int size; //!< Must be 0x44 - unsigned int slotId; //!< Save slot to use - SceAppMgrSaveDataSlotParam* slotParam; //!< Save slot params - uint8_t reserved[32]; //!< Reserved data - SceAppMgrSaveDataDataSaveItem* files; //!< Pointer to an array of files - int fileNum; //!< Number of files to delete - SceAppMgrMountPoint mountPoint; //!< Savedata mountpoint -} SceAppMgrSaveDataDataDelete; - -typedef struct SceAppMgrSaveDataSlot { - int size; //!< Must be 0x418 - unsigned int slotId; //!< Save slot to use - SceAppMgrSaveDataSlotParam slotParam; //!< Save slot params - uint8_t reserved[116]; //!< Reserved data - SceAppMgrMountPoint mountPoint; //!< Savedata mountpoint -} SceAppMgrSaveDataSlot; - -typedef struct SceAppMgrSaveDataSlotDelete { - int size; //!< Must be 0x18 - unsigned int slotId; //!< Save slot to use - SceAppMgrMountPoint mountPoint; //!< Savedata mountpoint -} SceAppMgrSaveDataSlotDelete; - typedef struct SceAppMgrExecOptParam SceAppMgrExecOptParam; // Missing struct typedef struct SceAppMgrLaunchAppOptParam SceAppMgrLaunchAppOptParam; // Missing struct @@ -89,60 +54,6 @@ typedef struct SceAppMgrTrcNotification { } SceAppMgrTrcNotification; /** - * Save data on savedata0: partition - * - * @param[in] data - Data to save - * - * @return 0 on success, < 0 on error. - */ -int _sceAppMgrSaveDataDataSave(SceAppMgrSaveDataData* data); - -/** - * Remove data on savedata0: partition - * - * @param[in] data - Data to remove - * - * @return 0 on success, < 0 on error. - */ -int _sceAppMgrSaveDataDataRemove(SceAppMgrSaveDataDataDelete* data); - -/** - * Create a savedata slot - * - * @param[in] data - Slot data - * - * @return 0 on success, < 0 on error. - */ -int _sceAppMgrSaveDataSlotCreate(SceAppMgrSaveDataSlot* data); - -/** - * Get current param of a savedata slot - * - * @param[out] data - Slot data - * - * @return 0 on success, < 0 on error. - */ -int _sceAppMgrSaveDataSlotGetParam(SceAppMgrSaveDataSlot* data); - -/** - * Set current param of a savedata slot - * - * @param[in] data - Slot data - * - * @return 0 on success, < 0 on error. - */ -int _sceAppMgrSaveDataSlotSetParam(SceAppMgrSaveDataSlot* data); - -/** - * Delete a savedata slot - * - * @param[in] data - Slot data - * - * @return 0 on success, < 0 on error. - */ -int _sceAppMgrSaveDataSlotDelete(SceAppMgrSaveDataSlotDelete* data); - -/** * Get Process ID by Title ID * * @param[out] pid - Process ID |