mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-21 17:55:13 -05:00
11 lines
330 B
C
11 lines
330 B
C
#ifndef POKEPLATINUM_DISTRIBUTION_CARTRIDGE_H
|
|
#define POKEPLATINUM_DISTRIBUTION_CARTRIDGE_H
|
|
|
|
#include "constants/heap.h"
|
|
|
|
void DistributionCartridge_UseHeap(enum HeapID heapID);
|
|
int DistributionCartridge_ReadLength(void);
|
|
BOOL DistributionCartridge_ReadData(void *dest, int size);
|
|
|
|
#endif // POKEPLATINUM_DISTRIBUTION_CARTRIDGE_H
|