mirror of
https://github.com/gbdev/rgbds.git
synced 2026-09-18 19:57:06 +00:00
19 lines
421 B
C++
19 lines
421 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef RGBDS_LINK_OUTPUT_HPP
|
|
#define RGBDS_LINK_OUTPUT_HPP
|
|
|
|
struct Section;
|
|
|
|
// Registers a section for output.
|
|
void out_AddSection(Section const §ion);
|
|
|
|
// Finds an assigned section overlapping another one.
|
|
Section const *out_OverlappingSection(Section const §ion);
|
|
|
|
void out_WriteROMIfAny();
|
|
void out_WriteSymIfAny();
|
|
void out_WriteMapIfAny();
|
|
|
|
#endif // RGBDS_LINK_OUTPUT_HPP
|