mirror of
https://github.com/reactos/RosBE.git
synced 2024-11-23 19:39:51 +00:00
2850c14671
really understand everything, and freeldr moved the image mapping code to a common area. svn path=/trunk/tools/RosBE/; revision=688
15 lines
286 B
C++
15 lines
286 B
C++
#ifndef COMPDVR_EXPORTS_H
|
|
#define COMPDVR_EXPORTS_H
|
|
|
|
#include <vector>
|
|
#include <utility>
|
|
#include "pedef.h"
|
|
#include "util.h"
|
|
#include "objectfile.h"
|
|
#include "section.h"
|
|
|
|
void ExportFixup
|
|
(ElfObjectFile &eof, const std::vector<section_mapping_t> &mapping);
|
|
|
|
#endif//COMPDVR_EXPORTS_H
|