diff options
author | Reiko Asakura | 2021-01-20 16:28:31 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-01-20 16:28:31 -0500 |
commit | c548125a34862ecda4e8a74fc26d22f9972ea91a (patch) | |
tree | 5515348e3432e5fbb14142afc93918088aff5b07 /include/user | |
parent | Merge common: iofilemgr (diff) | |
download | vds-libraries-c548125a34862ecda4e8a74fc26d22f9972ea91a.tar.gz |
Merge common: dmacmgr
Diffstat (limited to 'include/user')
-rw-r--r-- | include/user/kernel/dmac.h | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/include/user/kernel/dmac.h b/include/user/kernel/dmac.h deleted file mode 100644 index a6e0e42..0000000 --- a/include/user/kernel/dmac.h +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef _PSP2_DMAC_H_ -#define _PSP2_DMAC_H_ - -#include <psp2/types.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/** - * DMA memcpy - * - * @param[in] dst - Destination - * @param[in] src - Source - * @param[in] size - Size - * - * @return dst. -*/ -void *sceDmacMemcpy(void *dst, const void *src, SceSize size); - -/** - * DMA memset - * - * @param[in] dst - Destination - * @param[in] c - Constant - * @param[in] size - Size - * - * @return dst. -*/ -void *sceDmacMemset(void *dst, int c, SceSize size); - -#ifdef __cplusplus -} -#endif - -#endif /* _PSP2_DMAC_H_ */ |