|
RetroLinker
Linker for several 8-bit, 16-bit and 32-bit formats
|
Public Member Functions | |
| std::shared_ptr< const Image > | AsImage () const override |
| Retrieves a randomly accessible image. | |
| virtual size_t | ReadData (size_t bytes, offset_t offset, void *buffer) const =0 |
| Attempts to fill a buffer with data. | |
| uint64_t | ReadUnsigned (size_t bytes, offset_t offset, EndianType endiantype) const |
| Reads an unsigned number at a specific offset. | |
| uint64_t | ReadUnsigned (size_t bytes, offset_t offset) const |
| Reads an unsigned number at a specific offset with the default endianness. | |
| int64_t | ReadSigned (size_t bytes, offset_t offset, EndianType endiantype) const |
| Reads a signed number at a specific offset. | |
| int64_t | ReadSigned (size_t bytes, offset_t offset) const |
| Reads a signed number at a specific offset with the default endianness. | |
| int | GetByte (offset_t offset) const |
| Retrieve byte at a certain offset (optional, might not be defined). | |
| Public Member Functions inherited from Linker::Contents | |
| virtual offset_t | ImageSize () const =0 |
| Retrieves size of stored data. | |
| virtual offset_t | WriteFile (Writer &wr, offset_t count, offset_t offset=0) const =0 |
| Writes data of non-zero filled sections. | |
| virtual offset_t | WriteFile (Writer &wr) const |
| Writes data of non-zero filled sections. | |
| std::shared_ptr< Image > | AsImage () |
| Retrieves a randomly accessible image. | |
|
overridevirtual |
Retrieves a randomly accessible image.
Reimplemented from Linker::Contents.
|
pure virtual |
Attempts to fill a buffer with data.
| bytes | The (maximum) number of bytes to place in buffer |
| offset | The offset in the image to start reading the data |
| buffer | A byte buffer |
Implemented in Linker::Buffer, Linker::Section, Linker::Segment, Microsoft::LEFormat::IteratedPage::View, and Microsoft::PEFormat::MemoryPortionImage.