vote up 0 vote down star

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?

flag

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

2 Answers

vote up 2 vote down check

AFAIK, you will need the Msimg32.lib

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

link|flag
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
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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