What's new

DLLs

Does anybody knows how to pack several files into a DLL im Visual C++, and then retrieving somehow the files for manipulation of those???
Images, text files and stuff like that (i could make my own file format i know, but its too hard and dont understand all of that pointer confussion)
 

Cyberman

Moderator
Moderator
aprentice said:
Insert the resouce file (.rc)

That will work..

However I believe he'll have to figure out how to ACCESS the data. :)

You have to set up an stream from the resources included in the DLL then read them in that way. Although not fun it does work!

Cyb
 

tooie

New member
you just use normal resource functions to access it .. I am not sure what you are trying to hold in there .. just add the files to the resource file, have that attacted so it gets compiled in to the dll resource section then use normal resource loading functions to get them
 

Top