diff options
author | devnoname120 | 2018-08-11 17:07:43 +0200 |
---|---|---|
committer | devnoname120 | 2018-08-11 17:07:43 +0200 |
commit | 155ac2f9955e347d70689c5ed0d8666599bec5b1 (patch) | |
tree | af4979930f4dd372074b5b42346332032599764d | |
parent | Add kscePowerSetDisplayBrightness (diff) | |
download | vds-libraries-155ac2f9955e347d70689c5ed0d8666599bec5b1.tar.gz |
Fix incorrect doxygen comments
Diffstat (limited to '')
-rw-r--r-- | include/kernel/kernel/dmac.h | 4 | ||||
-rw-r--r-- | include/kernel/kernel/excpmgr.h | 2 | ||||
-rw-r--r-- | include/kernel/kernel/suspend.h | 2 | ||||
-rw-r--r-- | include/kernel/kernel/sysmem.h | 12 | ||||
-rw-r--r-- | include/user/avconfig.h | 10 | ||||
-rw-r--r-- | include/user/kernel/dmac.h | 4 | ||||
-rw-r--r-- | include/user/kernel/processmgr.h | 16 | ||||
-rw-r--r-- | include/user/kernel/rng.h | 2 | ||||
-rw-r--r-- | include/user/kernel/sysmem.h | 12 |
9 files changed, 32 insertions, 32 deletions
diff --git a/include/kernel/kernel/dmac.h b/include/kernel/kernel/dmac.h index 60718be..e8d978e 100644 --- a/include/kernel/kernel/dmac.h +++ b/include/kernel/kernel/dmac.h @@ -5,7 +5,7 @@ extern "C" { #endif -/*** +/** * DMA memcpy * * @param[in] dst - Destination @@ -16,7 +16,7 @@ extern "C" { */ void *sceDmacMemcpy(void *dst, const void *src, size_t size); -/*** +/** * DMA memset * * @param[in] dst - Destination diff --git a/include/kernel/kernel/excpmgr.h b/include/kernel/kernel/excpmgr.h index d9c83ed..c852da6 100644 --- a/include/kernel/kernel/excpmgr.h +++ b/include/kernel/kernel/excpmgr.h @@ -16,7 +16,7 @@ typedef enum SceExcpKind { SCE_EXCP_FIQ = 7 } SceExcpKind; -/*** +/** * Get a pointer to SceExcpmgr's internal data * * This is only used by exception handlers. diff --git a/include/kernel/kernel/suspend.h b/include/kernel/kernel/suspend.h index 712e9b3..09d1502 100644 --- a/include/kernel/kernel/suspend.h +++ b/include/kernel/kernel/suspend.h @@ -19,7 +19,7 @@ typedef enum SceKernelPowerTickType { } SceKernelPowerTickType; -/*** +/** * Cancel specified idle timers to prevent entering in power save processing. * * @param[in] type - One of ::SceKernelPowerTickType diff --git a/include/kernel/kernel/sysmem.h b/include/kernel/kernel/sysmem.h index 698bca2..bbd3207 100644 --- a/include/kernel/kernel/sysmem.h +++ b/include/kernel/kernel/sysmem.h @@ -144,7 +144,7 @@ typedef struct SceKernelSysrootSelfInfo { uint32_t self_size; } SceKernelSysrootSelfInfo; -/*** +/** * Allocates a new memory block * * @param[in] name - Name for the memory block @@ -156,7 +156,7 @@ typedef struct SceKernelSysrootSelfInfo { */ SceUID sceKernelAllocMemBlock(const char *name, SceKernelMemBlockType type, int size, SceKernelAllocMemBlockKernelOpt *optp); -/*** +/** * Frees new memory block * * @param[in] uid - SceUID of the memory block to free @@ -165,7 +165,7 @@ SceUID sceKernelAllocMemBlock(const char *name, SceKernelMemBlockType type, int */ int sceKernelFreeMemBlock(SceUID uid); -/*** +/** * Gets the base address of a memory block * * @param[in] uid - SceUID of the memory block @@ -175,7 +175,7 @@ int sceKernelFreeMemBlock(SceUID uid); */ int sceKernelGetMemBlockBase(SceUID uid, void **basep); -/*** +/** * Gets the memory block type of a memory block * * @param[in] uid - SceUID of the memory block @@ -185,7 +185,7 @@ int sceKernelGetMemBlockBase(SceUID uid, void **basep); */ int sceKernelGetMemBlockType(SceUID uid, unsigned int *type); -/*** +/** * Find the SceUID of a memory block * * @param[in] addr - Base address of the memory block @@ -195,7 +195,7 @@ int sceKernelGetMemBlockType(SceUID uid, unsigned int *type); */ SceUID sceKernelFindMemBlockByAddr(const void *addr, SceSize size); -/*** +/** * Find the SceUID of a memory block for a PID * * @param[in] pid - PID of the process diff --git a/include/user/avconfig.h b/include/user/avconfig.h index 947af3c..d171647 100644 --- a/include/user/avconfig.h +++ b/include/user/avconfig.h @@ -7,7 +7,7 @@ extern "C" { #endif -/*** +/** * Get the maximum brightness. * * @param[out] maxBrightness - Maximum brightness. @@ -16,7 +16,7 @@ extern "C" { */ 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). @@ -25,7 +25,7 @@ int sceAVConfigGetDisplayMaxBrightness(int *maxBrightness); */ int sceAVConfigSetDisplayBrightness(int brightness); -/*** +/** * Get the shutter volume. * * @param[out] volume - shutter volume. @@ -34,7 +34,7 @@ int sceAVConfigSetDisplayBrightness(int brightness); */ int sceAVConfigGetShutterVol(int *volume); -/*** +/** * Get the system volume. * * @param[out] volume - System volume. @@ -43,7 +43,7 @@ int sceAVConfigGetShutterVol(int *volume); */ int sceAVConfigGetSystemVol(int *volume); -/*** +/** * Set the system volume. * * @param volume - volume that the device will be set to (range 0-30). diff --git a/include/user/kernel/dmac.h b/include/user/kernel/dmac.h index b0fbd2b..a64165c 100644 --- a/include/user/kernel/dmac.h +++ b/include/user/kernel/dmac.h @@ -5,7 +5,7 @@ extern "C" { #endif -/*** +/** * DMA memcpy * * @param[in] dst - Destination @@ -16,7 +16,7 @@ extern "C" { */ void *sceDmacMemcpy(void *dst, const void *src, size_t size); -/*** +/** * DMA memset * * @param[in] dst - Destination diff --git a/include/user/kernel/processmgr.h b/include/user/kernel/processmgr.h index cbce339..272fe51 100644 --- a/include/user/kernel/processmgr.h +++ b/include/user/kernel/processmgr.h @@ -31,7 +31,7 @@ typedef enum SceKernelPowerTickType { SCE_KERNEL_POWER_TICK_DISABLE_OLED_DIMMING = 6 } SceKernelPowerTickType; -/*** +/** * Exit current Process with specified return code * * @param[in] res - Exit code to return @@ -40,7 +40,7 @@ typedef enum SceKernelPowerTickType { */ int sceKernelExitProcess(int res); -/*** +/** * Cancel specified idle timers to prevent entering in power save processing. * * @param[in] type - One of ::SceKernelPowerTickType @@ -49,7 +49,7 @@ int sceKernelExitProcess(int res); */ int sceKernelPowerTick(SceKernelPowerTickType type); -/*** +/** * Locks certain timers from triggering. * * @param[in] type - One of ::SceKernelPowerTickType @@ -58,7 +58,7 @@ int sceKernelPowerTick(SceKernelPowerTickType type); */ int sceKernelPowerLock(SceKernelPowerTickType type); -/*** +/** * Unlocks certain timers. * * @param[in] type - One of ::SceKernelPowerTickType @@ -67,7 +67,7 @@ int sceKernelPowerLock(SceKernelPowerTickType type); */ int sceKernelPowerUnlock(SceKernelPowerTickType type); -/*** +/** * Get the process time of the current process. * * @param[out] type - Pointer to a ::SceKernelSysClock structure which will receive the process time. @@ -76,21 +76,21 @@ int sceKernelPowerUnlock(SceKernelPowerTickType type); */ int sceKernelGetProcessTime(SceKernelSysClock *pSysClock); -/*** +/** * Get the lower 32 bits part of process time of the current process. * * @return process time of the current process */ SceUInt32 sceKernelGetProcessTimeLow(void); -/*** +/** * Get the process time of the current process. * * @return process time of the current process */ SceUInt64 sceKernelGetProcessTimeWide(void); -/*** +/** * Get the process ID of the current process. * * @return process ID of the current process diff --git a/include/user/kernel/rng.h b/include/user/kernel/rng.h index 88e0267..177e662 100644 --- a/include/user/kernel/rng.h +++ b/include/user/kernel/rng.h @@ -5,7 +5,7 @@ extern "C" { #endif -/*** +/** * Fills the output buffer with random data. * * @param[out] output - Output buffer diff --git a/include/user/kernel/sysmem.h b/include/user/kernel/sysmem.h index be4fbe2..2e8b8c2 100644 --- a/include/user/kernel/sysmem.h +++ b/include/user/kernel/sysmem.h @@ -57,7 +57,7 @@ typedef enum SceKernelMemoryType { SCE_KERNEL_MEMORY_TYPE_NORMAL = 0xD0 } SceKernelMemoryType; -/*** +/** * Allocates a new memory block * * @param[in] name - Name for the memory block @@ -69,7 +69,7 @@ typedef enum SceKernelMemoryType { */ SceUID sceKernelAllocMemBlock(const char *name, SceKernelMemBlockType type, int size, SceKernelAllocMemBlockOpt *optp); -/*** +/** * Frees new memory block * * @param[in] uid - SceUID of the memory block to free @@ -78,7 +78,7 @@ SceUID sceKernelAllocMemBlock(const char *name, SceKernelMemBlockType type, int */ int sceKernelFreeMemBlock(SceUID uid); -/*** +/** * Gets the base address of a memory block * * @param[in] uid - SceUID of the memory block to free @@ -101,21 +101,21 @@ int sceKernelCloseVMDomain(void); int sceKernelOpenMemBlock(const char *name, int flags); int sceKernelCloseMemBlock(SceUID uid); -/*** +/** * Get the model number of the device * * @return A value from SCE_KERNEL_MODEL */ int sceKernelGetModelForCDialog(void); -/*** +/** * Get the model number of the device * * @return A value from SCE_KERNEL_MODEL */ int sceKernelGetModel(void); -/*** +/** * Get free memory size in bytes * * @param[out] info - Returned free memory size for different kind of memory block types |