What library should be included to use TransparentBlt?

This is VC98 (Visual Studio 6) linking to the Gdi32.lib. (Other GDI functions such as BitBlt link as expected), and the compilers compiles with out error or warning.

Even though the Gdi32.lib is included, yet the linker returns this error:

mtcombo.obj : error LNK2001: unresolved external symbol __imp__TransparentBlt@44
C:\Work\Montel\Targ2_12\guitest.exe : fatal error LNK1120: 1 unresolved externals

What am I missing?

link

57% accept rate
Apart from an ability to spell... – David L Morris Oct 6 '08 at 5:12
Be advised this function causes a severe memory leak on Win98. Not sure how relevant it is for you, but... – GSerg Oct 6 '08 at 9:30
feedback

2 Answers

up vote 3 down vote accepted

AFAIK, you will need the Msimg32.lib

http://msdn.microsoft.com/en-us/library/ms532303(VS.85).aspx

link
Ah, cool. The MSDN documentation for VS6 says to use GDI32.LIB in the same place. – David L Morris Oct 6 '08 at 5:16
feedback

Msimg32.lib

FYI you can search the functions on http://msdn.microsoft.com/library and at the bottom it will tell you what library you need.

link
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.