Files
2021-01-29 04:45:27 +00:00

24 lines
498 B
ReStructuredText

=======================
dnfile design decisions
=======================
Main
----
* Everything is a class.
* Store raw structure values in struct attribute.
* Store parsed struture values in object attributes.
* Parse as much as we can, even if the file is malformed.
* Easy to use. Developed with IDE autocompletion in mind.
* Base CLR classes should not need to know anything about PE objects.
Naming
------
* corhdr.h definitions in classes named Cor*
* bases classes prefixed with Clr