Click to See Complete Forum and Search --> : DLL & bitmaps


October 28th, 1999, 02:53 AM
Help me!

How can I create DLL that export and import bitmap resources

Feng Yuan
October 28th, 1999, 03:41 PM
Resource does not need to be exported, you can use
hMod = LoadLibrary("dllname"), hBitmap=LoadBitmap(hMod, MAKEINTRESOURCE(resid)) to load it.