wut/include/coreinit/copydata.h
2022-10-29 19:28:43 +02:00

36 lines
398 B
C

#pragma once
#include <wut.h>
/**
* \defgroup coreinit_copydata CopyData
* \ingroup coreinit
*
* @{
*/
#ifdef __cplusplus
extern "C" {
#endif
void
__OSClearCopyData();
BOOL
__OSAppendCopyData(const void *data,
uint32_t size);
void *
__OSGetCopyDataPtr();
uint32_t
__OSGetCopyDataSize();
BOOL
__OSResizeCopyData(uint32_t size);
#ifdef __cplusplus
}
#endif
/** @} */