mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
C++ acts like structs are `typedef`ed by default We do have to keep `struct stat`, since there's ambiguity with the function also called `stat`.
16 lines
338 B
C++
16 lines
338 B
C++
/* SPDX-License-Identifier: MIT */
|
|
|
|
// Assigning all sections a place
|
|
#ifndef RGBDS_LINK_SDAS_OBJ_H
|
|
#define RGBDS_LINK_SDAS_OBJ_H
|
|
|
|
#include <stdio.h>
|
|
#include <vector>
|
|
|
|
struct FileStackNode;
|
|
struct Symbol;
|
|
|
|
void sdobj_ReadFile(FileStackNode const *fileName, FILE *file, std::vector<Symbol> &fileSymbols);
|
|
|
|
#endif // RGBDS_LINK_SDAS_OBJ_H
|