diff options
author | Reiko Asakura | 2020-07-23 15:34:54 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-07-23 15:34:54 -0400 |
commit | 9f45649bc1bd6cbdbe8b2c4233726dae47dae480 (patch) | |
tree | c8ac12d9c60c2fe61573ac44bb9364379c8e2c66 /include/user/io/devctl.h | |
parent | Refactor kernel IO functions (diff) | |
download | vds-libraries-9f45649bc1bd6cbdbe8b2c4233726dae47dae480.tar.gz |
Add {,k}sceIo{Io,Dev}ctlAsync prototypes
Diffstat (limited to 'include/user/io/devctl.h')
-rw-r--r-- | include/user/io/devctl.h | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/include/user/io/devctl.h b/include/user/io/devctl.h index 2b9c96a..47f6ac8 100644 --- a/include/user/io/devctl.h +++ b/include/user/io/devctl.h @@ -1,35 +1,8 @@ #ifndef _PSP2_IO_DEVCTL_H_ #define _PSP2_IO_DEVCTL_H_ -#include <psp2/kernel/iofilemgr.h> - -#ifdef __cplusplus -extern "C" { -#endif - -typedef struct SceIoDevInfo { - SceOff max_size; - SceOff free_size; - SceSize cluster_size; - void *unk; -} SceIoDevInfo; +#pragma GCC warning "psp2/io/devctl.h is deprecated. Please include psp2/kernel/iofilemgr.h." -/** - * Perform an ioctl on a device. (asynchronous) - * - * @param fd - Opened file descriptor to ioctl to - * @param cmd - The command to send to the device - * @param indata - A data block to send to the device, if NULL sends no data - * @param inlen - Length of indata, if 0 sends no data - * @param outdata - A data block to receive the result of a command, if NULL receives no data - * @param outlen - Length of outdata, if 0 receives no data - * @return 0 on success, < 0 on error - */ -int sceIoIoctlAsync(SceUID fd, unsigned int cmd, void *indata, int inlen, void *outdata, int outlen); - -#ifdef __cplusplus -} -#endif +#include <psp2/kernel/iofilemgr.h> #endif /* _PSP2_IO_DEVCTL_H_ */ - |