Hi SeaFarer,
Thanks for your kind words. There are some cases where you would like to embed binary data in your executable. For example :
- Creating SFX archives : compressed data + decompressor packed in one executable. You can convert your zip or rar archive to a COFF module to be linked with the main module.
- Embedding small images \ sound files in your project without using resources.
- Embedding large data blocks and arrays. Linking them as object modules is faster than using include files containing decimal or hexadecimal bytes.
Attached demonstrates the second scenario.
Attached File ( Number of downloads: 36 )
Login or
Register to download