mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 15:51:52 +01:00
41 lines
527 B
C
41 lines
527 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);
|
|
|
|
uint32_t
|
|
OSEffectiveToPhysical(void *vaddr);
|
|
|
|
void*
|
|
OSAllocFromSystem(uint32_t size,
|
|
int align);
|
|
|
|
void
|
|
OSFreeToSystem(void *ptr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|