mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
12 lines
349 B
C
12 lines
349 B
C
#ifndef POKEPLATINUM_VRAM_TRANSFER_H
|
|
#define POKEPLATINUM_VRAM_TRANSFER_H
|
|
|
|
#include "constants/heap.h"
|
|
|
|
void VramTransfer_New(u32 capacity, enum HeapID heapID);
|
|
void VramTransfer_Free(void);
|
|
BOOL VramTransfer_Request(NNS_GFD_DST_TYPE type, u32 destAddr, void *buf, u32 size);
|
|
void VramTransfer_Process(void);
|
|
|
|
#endif // POKEPLATINUM_VRAM_TRANSFER_H
|