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. - COFF Relocations
  8. - COFF Linenumbers
  9. - Imports
  10. - Exports
  11. - Base relocations (DLL)
  12.  
  13. ## How to use
  14.  
  15. To declare functions from the library include it:
  16.  
  17. ```C
  18. #include "epep.h"
  19. ```
  20.  
  21. The functions they shoud be instantiated somewhere in the project like so:
  22.  
  23. ```C
  24. #define EPEP_INST
  25. #include "epep.h"
  26. ```
  27.