coreinit: Add CopyData functions

This commit is contained in:
GaryOderNichts
2022-09-28 00:17:10 +02:00
committed by fincs
parent 8cae5c050d
commit 4ccc879aa9
2 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
#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
/** @} */