diff options
author | Sunguk Lee | 2017-06-21 01:08:34 +0900 |
---|---|---|
committer | Sunguk Lee | 2017-06-21 01:48:13 +0900 |
commit | 996762f2c74a492cfe873e3dc6e3bf902297e8bc (patch) | |
tree | 163550a893b2b946936d58abb6eef64bfa0e458d /include/user | |
parent | Added new NIDs (diff) | |
download | vds-libraries-996762f2c74a492cfe873e3dc6e3bf902297e8bc.tar.gz |
Manually revert #179 changes
- revert bit size of the structs;
this change have issue for build vita2d
- revert ErrorCode of SceMsgDialogErrorCodeParam;
I don't know reason of why change to TitleCase
- remove some whitespaces
- add some spaces
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/appmgr.h | 2 | ||||
-rw-r--r-- | include/user/avconfig.h | 4 | ||||
-rw-r--r-- | include/user/npdrmpackage.h | 2 | ||||
-rw-r--r-- | include/user/power.h | 4 | ||||
-rw-r--r-- | include/user/usbserial.h | 8 |
5 files changed, 10 insertions, 10 deletions
diff --git a/include/user/appmgr.h b/include/user/appmgr.h index d0e8b81..65fd1d4 100644 --- a/include/user/appmgr.h +++ b/include/user/appmgr.h @@ -132,7 +132,7 @@ int sceAppMgrWorkDirMountById(int id, char *titleid, char *mount_point); //! Unmount app0: for example to enable write access to ux0:app/TITLEID //! Returns 0 on success int sceAppMgrUmount(const char *mount_point); - + #ifdef __cplusplus } #endif diff --git a/include/user/avconfig.h b/include/user/avconfig.h index fe0596d..8e0d893 100644 --- a/include/user/avconfig.h +++ b/include/user/avconfig.h @@ -11,7 +11,7 @@ extern "C" { * Get the maximum brightness. * * @param[out] maxBrightness - Maximum brightness. - * + * * @return 0 on success, < 0 on error. */ int sceAVConfigGetDisplayMaxBrightness(int *maxBrightness); @@ -20,7 +20,7 @@ int sceAVConfigGetDisplayMaxBrightness(int *maxBrightness); * Set the screen brightness. * * @param brightness - Brightness that the screen will be set to (range 21-65536, 0 turns off the screen). - * + * * @return 0 on success, < 0 on error. */ int sceAVConfigSetDisplayBrightness(int brightness); diff --git a/include/user/npdrmpackage.h b/include/user/npdrmpackage.h index 4df5eca..ffa5124 100644 --- a/include/user/npdrmpackage.h +++ b/include/user/npdrmpackage.h @@ -43,7 +43,7 @@ int _sceNpDrmPackageCheck(const void *buffer, SceSize size, int zero, unsigned i * @return 0 on success, != 0 on error */ int _sceNpDrmPackageDecrypt(void * __restrict__ buffer, SceSize size, _sceNpDrmPackageDecrypt_opt * __restrict__ opt); - + #ifdef __cplusplus } #endif diff --git a/include/user/power.h b/include/user/power.h index 8a6cadd..55a5543 100644 --- a/include/user/power.h +++ b/include/user/power.h @@ -15,7 +15,7 @@ typedef enum ScePowerCallbackType { SCE_POWER_CB_RESUMING = 0x00020000, /** indicates the unit has finish resuming from suspend mode */ SCE_POWER_CB_RESUME_COMPLETE = 0x00040000 -}ScePowerCallbackType; +} ScePowerCallbackType; /* Callbacks */ @@ -140,7 +140,7 @@ int scePowerGetBatteryCycleCount(void); * * @return CPU clock frequency in Mhz */ -int scePowerGetArmClockFrequency(void); +int scePowerGetArmClockFrequency(void); /** * Returns BUS clock frequency diff --git a/include/user/usbserial.h b/include/user/usbserial.h index 00c9ba6..e510a63 100644 --- a/include/user/usbserial.h +++ b/include/user/usbserial.h @@ -12,7 +12,7 @@ extern "C" { * * @return 0 on success, < 0 on error * - * @note The user is responsible for making sure no other UDC driver is active. This activates UDC as a "PS Vita" Type D device. + * @note The user is responsible for making sure no other UDC driver is active. This activates UDC as a "PS Vita" Type D device. * * @note Wrapper for kernel function sceUsbSerialStart() */ @@ -23,11 +23,11 @@ int sceUsbSerialStart(void); * * @return 0 on success, < 0 on error * - * @param unk Unknown + * @param unk Unknown * * @note Wrapper for kernel function sceUsbSerialSetup() */ -int sceUsbSerialSetup(int unk); +int sceUsbSerialSetup(int unk); /** * Close USB serial device @@ -57,7 +57,7 @@ unsigned int sceUsbSerialGetRecvBufferSize(void); /** * Send data * @param[in] *buffer data to send over usb - * @param len int len of serial buffer data + * @param len int len of serial buffer data * @param unk1 Unknown * @param unk2 Unknown * @note max send length is 0x10000 |