diff options
author | Reiko Asakura | 2020-09-19 16:13:58 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-09-19 16:13:58 -0400 |
commit | 4b52330f2df74aa1f48551973fd0d8f851123f42 (patch) | |
tree | 33d05d23766c42367d31cc15313ddb04be6c7f8b /include/user/usbd.h | |
parent | Add SceKernelForMono functions (diff) | |
download | vds-libraries-4b52330f2df74aa1f48551973fd0d8f851123f42.tar.gz |
Make errors signed
Diffstat (limited to 'include/user/usbd.h')
-rw-r--r-- | include/user/usbd.h | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/include/user/usbd.h b/include/user/usbd.h index f30dad4..1b40d14 100644 --- a/include/user/usbd.h +++ b/include/user/usbd.h @@ -8,19 +8,19 @@ extern "C" { #endif typedef enum SceUsbdErrorCode { - SCE_USBD_ERROR_IO = 0x80240001, - SCE_USBD_ERROR_INVALID_ARG = 0x80240002, - SCE_USBD_ERROR_ACCESS = 0x80240003, - SCE_USBD_ERROR_NO_DEVICE = 0x80240004, - SCE_USBD_ERROR_NOT_FOUND = 0x80240005, - SCE_USBD_ERROR_BUSY = 0x80240006, - SCE_USBD_ERROR_TIMEOUT = 0x80240007, - SCE_USBD_ERROR_OVERFLOW = 0x80240008, - SCE_USBD_ERROR_PIPE = 0x80240009, - SCE_USBD_ERROR_INTERRUPTED = 0x8024000A, - SCE_USBD_ERROR_NO_MEM = 0x8024000B, - SCE_USBD_ERROR_NOT_SUPPORTED = 0x8024000C, - SCE_USBD_ERROR_FATAL = 0x802400FF + SCE_USBD_ERROR_IO = (int)0x80240001, + SCE_USBD_ERROR_INVALID_ARG = (int)0x80240002, + SCE_USBD_ERROR_ACCESS = (int)0x80240003, + SCE_USBD_ERROR_NO_DEVICE = (int)0x80240004, + SCE_USBD_ERROR_NOT_FOUND = (int)0x80240005, + SCE_USBD_ERROR_BUSY = (int)0x80240006, + SCE_USBD_ERROR_TIMEOUT = (int)0x80240007, + SCE_USBD_ERROR_OVERFLOW = (int)0x80240008, + SCE_USBD_ERROR_PIPE = (int)0x80240009, + SCE_USBD_ERROR_INTERRUPTED = (int)0x8024000A, + SCE_USBD_ERROR_NO_MEM = (int)0x8024000B, + SCE_USBD_ERROR_NOT_SUPPORTED = (int)0x8024000C, + SCE_USBD_ERROR_FATAL = (int)0x802400FF } SceUsbdErrorCode; typedef struct SceUsbdDeviceInfo { |