mirror of
https://github.com/reactos/RosBE.git
synced 2024-11-27 13:20:23 +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_IMPORTS_H
|
|
#define COMPDVR_IMPORTS_H
|
|
|
|
#include <vector>
|
|
#include <utility>
|
|
#include "pedef.h"
|
|
#include "util.h"
|
|
#include "objectfile.h"
|
|
#include "section.h"
|
|
|
|
void ImportFixup
|
|
(ElfObjectFile &eof, const std::vector<section_mapping_t> &mapping);
|
|
|
|
#endif//COMPDVR_IMPORTS_H
|