mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 19:41:52 +01:00
31 lines
378 B
C
31 lines
378 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
/**
|
||
|
* \defgroup coreinit_memory Memory
|
||
|
* \ingroup coreinit
|
||
|
*
|
||
|
* @{
|
||
|
*/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void *
|
||
|
OSBlockMove(void *dst,
|
||
|
const void *src,
|
||
|
uint32_t size,
|
||
|
BOOL flush);
|
||
|
|
||
|
void *
|
||
|
OSBlockSet(void *dst,
|
||
|
uint8_t val,
|
||
|
uint32_t size);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
/** @} */
|