diff options
author | Reiko Asakura | 2020-07-05 20:50:52 -0400 |
---|---|---|
committer | Reiko Asakura | 2020-07-05 20:50:52 -0400 |
commit | 7df549ba76f43ca796d36ff8af6d39d94e3f3a06 (patch) | |
tree | a10d69f5875ff51610ca61129976cd146a0437bb /include/user/kernel/sysmem.h | |
parent | Name changes to match style (diff) | |
parent | Add threadmgr constants and prototypes (diff) | |
download | vds-libraries-7df549ba76f43ca796d36ff8af6d39d94e3f3a06.tar.gz |
Merge
Diffstat (limited to '')
-rw-r--r-- | include/user/kernel/sysmem.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/user/kernel/sysmem.h b/include/user/kernel/sysmem.h index 1e0ea9c..404e810 100644 --- a/include/user/kernel/sysmem.h +++ b/include/user/kernel/sysmem.h @@ -1,20 +1,20 @@ #ifndef _PSP2_KERNEL_SYSMEM_H_ #define _PSP2_KERNEL_SYSMEM_H_ -#include <psp2/types.h> +#include <psp2/kernel/types.h> #ifdef __cplusplus extern "C" { #endif -typedef enum SceKernelMemBlockType { +typedef enum _SceKernelMemBlockType { SCE_KERNEL_MEMBLOCK_TYPE_USER_RW_UNCACHE = 0x0C208060, SCE_KERNEL_MEMBLOCK_TYPE_USER_RX = 0x0C20D050, SCE_KERNEL_MEMBLOCK_TYPE_USER_RW = 0x0C20D060, SCE_KERNEL_MEMBLOCK_TYPE_USER_MAIN_PHYCONT_RW = 0x0C80D060, SCE_KERNEL_MEMBLOCK_TYPE_USER_MAIN_PHYCONT_NC_RW = 0x0D808060, SCE_KERNEL_MEMBLOCK_TYPE_USER_CDRAM_RW = 0x09408060 -} SceKernelMemBlockType; +} _SceKernelMemBlockType; typedef struct SceKernelAllocMemBlockOpt { SceSize size; |