So, I have a Visual Studio 2008 project that contains a large amount of binary data that it is currently referencing. I would like to pack binary data the same way you can do with C #, adding it as a โresourceโ and compiling it as a DLL.
Suppose all my data has the extension ".data" and is currently being read from a visual studio project.
Is there a way with which you can compile or link the data in the .dll that it calls?
I looked at some Google links for this, and so far I havenโt come up with anything - the only possible solution I came up with is to use something like ResGen to create a .resources file and then link it using AssemblyLinker with / Embed or / Link, I do not think that it will work properly, though, because I do not have text files to create .resources files, but binary files themselves.
Any tips?
c ++ binary-data linker embed
CrimsonX
source share