mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Follow Linux kernel coding style. Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
14 lines
336 B
C
14 lines
336 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(const struct sSection *pSect);
|
|
void MapfileInitBank(int32_t bank);
|
|
void MapfileCloseBank(int32_t slack);
|
|
|
|
#endif /* RGBDS_LINK_MAPFILE_H */
|