I am making a project using Visual C++ 2010 under Windows 7. I need to use ATL library, in fact I installed Windows WDK (version 7600.16385.1) In particular I using the following libraries from WDK
- setupapi.lib
- atls.lib
- atlsd.lib
- atl.lib
- atlthunk.lib
Compiling my code I have the following warnings:
atls.lib(stdafx.obj) : warning LNK4254: section 'ATL' (50000040) merged into '.rdata' (40000040) with different attributes
atls.lib(stdafx.obj) : warning LNK4078: multiple 'ATL' sections found with different attributes (40301040)
Does anyone know how to fix it? I am worried of possible memory leaks or having some problem to access my data. Thanks
atls
andatlsd
are release and debug verions of the same library, you are very unlikely to need both. – Glidden