An open API service indexing awesome lists of open source software.

https://github.com/mkostoevr/epep

Embeddable PE Parser.
https://github.com/mkostoevr/epep

dependency-free embeddable embeddable-pe-parser header-only independent no-dependencies pe pe32 pe64 portable-executable

Last synced: 5 months ago
JSON representation

Embeddable PE Parser.

Awesome Lists containing this project

README

          

# epep - Embeddable PE Parser
## Features

- PE header (including Data Directories as a part Optional Header)
- Section Headers
- COFF Symbols
- COFF Relocations
- COFF Linenumbers
- Imports
- Exports
- Base relocations (DLL)

## How to use

To declare functions from the library include it:

```C
#include "epep.h"
```

The functions they shoud be instantiated somewhere in the project like so:

```C
#define EPEP_INST
#include "epep.h"
```