mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-27 05:22:07 +00:00
Not all occurrences have been replaced, in some cases they have been left as they were before (like in rgbgfx and when they are in the interface of a C standard library function). Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
14 lines
304 B
C
14 lines
304 B
C
#ifndef RGBDS_LINK_MAPFILE_H
|
|
#define RGBDS_LINK_MAPFILE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void SetMapfileName(char *name);
|
|
void SetSymfileName(char *name);
|
|
void CloseMapfile(void);
|
|
void MapfileWriteSection(struct sSection * pSect);
|
|
void MapfileInitBank(int32_t bank);
|
|
void MapfileCloseBank(int32_t slack);
|
|
|
|
#endif
|