File: object.hpp

package info (click to toggle)
rgbds 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 20,164 kB
  • sloc: cpp: 19,048; asm: 6,208; yacc: 2,405; sh: 1,784; makefile: 213; ansic: 14
file content (15 lines) | stat: -rw-r--r-- 363 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: MIT

#ifndef RGBDS_LINK_OBJECT_HPP
#define RGBDS_LINK_OBJECT_HPP

#include <stddef.h>
#include <string>

// Read an object (.o) file, and add its info to the data structures.
void obj_ReadFile(std::string const &filePath, size_t fileID);

// Sets up object file reading
void obj_Setup(size_t nbFiles);

#endif // RGBDS_LINK_OBJECT_HPP