mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 15:02:01 -04:00
9737dfad34
Resolves #19
17 lines
428 B
C++
17 lines
428 B
C++
#pragma once
|
|
|
|
/*!
|
|
* @file LinkedObjectFileCreation.h
|
|
* Create a LinkedObjectFile from raw object file data.
|
|
* This implements a decoder for the GOAL linking format.
|
|
*/
|
|
|
|
#ifndef NEXT_LINKEDOBJECTFILECREATION_H
|
|
#define NEXT_LINKEDOBJECTFILECREATION_H
|
|
|
|
#include "LinkedObjectFile.h"
|
|
|
|
LinkedObjectFile to_linked_object_file(const std::vector<uint8_t>& data, const std::string& name);
|
|
|
|
#endif // NEXT_LINKEDOBJECTFILECREATION_H
|