Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. # epep - Embeddable PE Parser
  2. ## Features
  3.  
  4. - PE header (including Data Directories as a part Optional Header)
  5. - Section Headers
  6. - COFF Symbols
  7. - Imports
  8. - Exports
  9. - Base relocations (DLL)
  10.  
  11. ## How to use
  12.  
  13. To declare functions from the library include it:
  14.  
  15. ```C
  16. #include "epep.h"
  17. ```
  18.  
  19. The functions they shoud be instantiated somewhere in the project like so:
  20.  
  21. ```C
  22. #define EPEP_INST
  23. #include "epep.h"
  24. ```
  25.