Hi,
I'm writing a small test case that tests a 3rd
party library. I'm using the Vis. Studio .NET 2003 C++ and
compiling and linking using the command line as follows:
cl /LD /MD /I" ... my includes ..."
MyTest.cpp 3rdPartyLib.lib [DependentLibA.lib DependentLibB.lib
...]
In order to do this, I've had to
identify and include all of the libraries that 3rdPartyLib.lib depends
on. Unfortunately, I'm left with 2 unresolved externals for
getDC and releaseDC.
What library do I need to link
with to resolve getDC and
releaseDC
Thanks,
Andrew

link library for getDC and releaseDC
JeffWoodard
I assume you mean GetDC and ReleaseDC - these are defined in use32.lib
http://msdn.microsoft.com/library/default.asp url=/library/en-us/gdi/devcons_4esj.asp
Jeff Micro