forked from KolibriOS/kolibrios
2b98571951
git-svn-id: svn://kolibrios.org@8600 a494cfbc-eb01-0410-851d-a64ba20cac60
25 lines
404 B
Markdown
25 lines
404 B
Markdown
# epep - Embeddable PE Parser
|
|
## Features
|
|
|
|
- PE header (including Data Directories as a part Optional Header)
|
|
- Section Headers
|
|
- COFF Symbols
|
|
- 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"
|
|
```
|