summaryrefslogtreecommitdiff
path: root/include/user
diff options
context:
space:
mode:
Diffstat (limited to 'include/user')
-rw-r--r--include/user/avconfig.h10
-rw-r--r--include/user/kernel/dmac.h4
-rw-r--r--include/user/kernel/processmgr.h16
-rw-r--r--include/user/kernel/rng.h2
-rw-r--r--include/user/kernel/sysmem.h12
5 files changed, 22 insertions, 22 deletions
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