From c57b1c467a35c844ac2108db4d898b0e3c87142c Mon Sep 17 00:00:00 2001 From: TheOfficialFloW Date: Sun, 18 Dec 2016 23:04:04 +0100 Subject: Update devctl.h --- include/user/io/devctl.h | 34 +++------------------------------- 1 file changed, 3 insertions(+), 31 deletions(-) (limited to 'include') diff --git a/include/user/io/devctl.h b/include/user/io/devctl.h index e551abe..442804c 100644 --- a/include/user/io/devctl.h +++ b/include/user/io/devctl.h @@ -10,12 +10,12 @@ extern "C" { /** * Send a devctl command to a device. * - * @par Example: Sending a simple command to a device (not a real devctl) + * @par Example: Sending a simple command to a device * @code - * sceIoDevctl("ms0:", 0x200000, indata, 4, NULL, NULL); + * sceIoDevctl("ux0:", 0x3001, NULL, 0, outdata, 0x18); * @endcode * - * @param dev - String for the device to send the devctl to (e.g. "ms0:") + * @param dev - String for the device to send the devctl to (e.g. "ux0:") * @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 @@ -25,34 +25,6 @@ extern "C" { */ int sceIoDevctl(const char *dev, unsigned int cmd, void *indata, int inlen, void *outdata, int outlen); -/** - * Assigns one IO device to another (I guess) - * @param dev1 - The device name to assign. - * @param dev2 - The block device to assign from. - * @param dev3 - The filesystem device to mape the block device to dev1 - * @param mode - Read/Write mode. One of IoAssignPerms. - * @param unk1 - Unknown, set to NULL. - * @param unk2 - Unknown, set to 0. - * @return < 0 on error. - * - * @par Example: Reassign flash0 in read/write mode. - * @code - * sceIoUnassign("flash0"); - * sceIoAssign("flash0", "lflash0:0,0", "flashfat0:", IOASSIGN_RDWR, NULL, 0); - * @endcode - * - */ -int sceIoAssign(const char *dev1, const char *dev2, const char *dev3, int mode, void* unk1, long unk2); - -/** - * Unassign an IO device. - * @param dev - The device to unassign. - * @return < 0 on error - * - * @par Example: See ::sceIoAssign - */ -int sceIoUnassign(const char *dev); - /** * Perform an ioctl on a device. * -- cgit v1.2.3