Help me!
How can I create DLL that export and import bitmap resources
Printable View
Help me!
How can I create DLL that export and import bitmap resources
Resource does not need to be exported, you can use
hMod = LoadLibrary("dllname"), hBitmap=LoadBitmap(hMod, MAKEINTRESOURCE(resid)) to load it.