mirror of
https://github.com/QuasarApp/pe-parse.git
synced 2025-04-28 13:24:32 +00:00
20 lines
349 B
C++
20 lines
349 B
C++
/* DO WHATEVER YOU WANT */
|
|
|
|
#ifndef _PARSE_H
|
|
#define _PARSE_H
|
|
#include <string>
|
|
#include <boost/cstdint.hpp>
|
|
|
|
typedef boost::uint32_t RVA;
|
|
|
|
typedef struct _parsed_pe {
|
|
std::string originalFilePath;
|
|
} parsed_pe;
|
|
|
|
//get a PE parse context from a file
|
|
parsed_pe *ParsePEFromFile(const char *filePath);
|
|
|
|
void DestructParsedPE(parsed_pe *pe);
|
|
|
|
#endif
|