two questions,how do you add a resource and how would you extract the dll at runtime?(sorta want to know this,for reference at least).
Edit - Hm... I am too wondering if its a good idea...I guess I shouldn't...
Edit 2 - I think I found out how. I went through resHack and added a dll with the type of "DLL" and the name "TEST",and then I would make a function in the dll that has all the dlls in it,say like:
HINSTANCE GetDLLFromResource(LPSTR resName,LPSTR resType)
{
HINSTANCE location = AfxFindResourceHandle(resName,resType);
HINSTANCE dll = FindResource(location,resName,resType);
return dll;
}
I'm probably wrong,arent I
Hello