diff options
author | Reiko Asakura | 2021-01-20 14:35:50 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-01-20 14:35:50 -0500 |
commit | 3146cc34a4b86cc9d6c1843ca27c128e67baf23a (patch) | |
tree | 73afa97644dcbd29c1af5414ddafde782f39949c /include/user/kernel/iofilemgr_dirent.h | |
parent | Remove dupe: iofilemgr (diff) | |
download | vds-libraries-3146cc34a4b86cc9d6c1843ca27c128e67baf23a.tar.gz |
Merge common: iofilemgr
Diffstat (limited to 'include/user/kernel/iofilemgr_dirent.h')
-rw-r--r-- | include/user/kernel/iofilemgr_dirent.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/include/user/kernel/iofilemgr_dirent.h b/include/user/kernel/iofilemgr_dirent.h deleted file mode 100644 index 741450b..0000000 --- a/include/user/kernel/iofilemgr_dirent.h +++ /dev/null @@ -1,47 +0,0 @@ -#ifndef _DOLCESDK_PSP2_KERNEL_IOFILEMGR_DIRENT_H_ -#define _DOLCESDK_PSP2_KERNEL_IOFILEMGR_DIRENT_H_ - -#include_next <kernel/iofilemgr_dirent.h> - -#include <kernel/iofilemgr_async.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * Open a directory (asynchronous) - * - * @param dirname - The directory to open for reading. - * @param asyncParam - parameters related to async operation. - * - * @return If >= 0 then a valid op handle, otherwise a Sony error code. - */ -SceUID sceIoDopenAsync(const char *dirname, SceIoAsyncParam* asyncParam); - -/** - * Reads an entry from an opened file descriptor (asynchronous) - * - * @param fd - Already opened file descriptor (using ::sceIoDopen or ::sceIoDopenAsync) - * @param dir - Pointer to a ::SceIoDirent structure to hold the file information - * @param asyncParam - parameters related to async operation. - * - * @return If >= 0 then a valid op handle, otherwise a Sony error code. - */ -SceUID sceIoDreadAsync(SceUID fd, SceIoDirent *dir, SceIoAsyncParam* asyncParam); - -/** - * Close an opened directory file descriptor (asynchronous) - * - * @param fd - Already opened file descriptor (using ::sceIoDopen or ::sceIoDopenAsync) - * @param asyncParam - parameters related to async operation. - * - * @return If >= 0 then a valid op handle, otherwise a Sony error code. - */ -SceUID sceIoDcloseAsync(SceUID fd, SceIoAsyncParam* asyncParam); - -#ifdef __cplusplus -} -#endif - -#endif /* _DOLCESDK_PSP2_KERNEL_IOFILEMGR_DIRENT_H_ */ |