I gave up trying to create a Platform SDK-only build. I've converted the current DQSDTools to build cleanly with VS2003 (VC7.1) with this commit though.
If you can, and have the tools, see if you have any problems with a build. Glenn > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:dqsd-cvs- > [EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] > Sent: Saturday, February 11, 2006 8:10 PM > To: [email protected] > Subject: [DQSD-CVS] dqsd/src/DQSDTools DQSDTools.dep,1.5,1.6 > Launcher.cpp,1.47,1.48 StdAfx.cpp,1.3,1.4 StdAfx.h,1.11,1.12 > Utilities.cpp,1.8,1.9 > > View the DQSD CVS repository here: > http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/ > > Update of /cvsroot/dqsd/dqsd/src/DQSDTools > In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv316/src/DQSDTools > > Modified Files: > DQSDTools.dep Launcher.cpp StdAfx.cpp StdAfx.h Utilities.cpp > Log Message: > Update to VC7.1/VS.NET 2003 build tools > > Index: DQSDTools.dep > =================================================================== > RCS file: /cvsroot/dqsd/dqsd/src/DQSDTools/DQSDTools.dep,v > retrieving revision 1.5 > retrieving revision 1.6 > diff -C2 -d -r1.5 -r1.6 > *** DQSDTools.dep 2 Dec 2003 20:42:52 -0000 1.5 > --- DQSDTools.dep 12 Feb 2006 02:09:10 -0000 1.6 > *************** > *** 27,31 **** > ".\Launcher.h"\ > ".\Utilities.h"\ > ! "c:\program files\microsoft sdk\include\shobjidl.h"\ > > > --- 27,31 ---- > ".\Launcher.h"\ > ".\Utilities.h"\ > ! "$(SDKINCLUDE)\shobjidl.h"\ > > > *************** > *** 39,52 **** > ".\StdAfx.h"\ > ".\Utilities.h"\ > ! "c:\program files\microsoft sdk\include\basetsd.h"\ > ! "c:\program files\microsoft sdk\include\dimm.h"\ > ! "c:\program files\microsoft sdk\include\guiddef.h"\ > ! "c:\program files\microsoft sdk\include\propidl.h"\ > ! "c:\program files\microsoft sdk\include\reason.h"\ > ! "c:\program files\microsoft sdk\include\shldisp.h"\ > ! "c:\program files\microsoft sdk\include\shtypes.h"\ > ! "c:\program files\microsoft sdk\include\stralign.h"\ > ! "c:\program files\microsoft sdk\include\tvout.h"\ > ! "c:\program files\microsoft sdk\include\winefs.h"\ > > > --- 39,52 ---- > ".\StdAfx.h"\ > ".\Utilities.h"\ > ! "$(SDKINCLUDE)\basetsd.h"\ > ! "$(SDKINCLUDE)\dimm.h"\ > ! "$(SDKINCLUDE)\guiddef.h"\ > ! "$(SDKINCLUDE)\propidl.h"\ > ! "$(SDKINCLUDE)\reason.h"\ > ! "$(SDKINCLUDE)\shldisp.h"\ > ! "$(SDKINCLUDE)\shtypes.h"\ > ! "$(SDKINCLUDE)\stralign.h"\ > ! "$(SDKINCLUDE)\tvout.h"\ > ! "$(SDKINCLUDE)\winefs.h"\ > > > > Index: Launcher.cpp > =================================================================== > RCS file: /cvsroot/dqsd/dqsd/src/DQSDTools/Launcher.cpp,v > retrieving revision 1.47 > retrieving revision 1.48 > diff -C2 -d -r1.47 -r1.48 > *** Launcher.cpp 6 Jan 2005 14:19:30 -0000 1.47 > --- Launcher.cpp 12 Feb 2006 02:09:10 -0000 1.48 > *************** > *** 239,243 **** > } > > ! // Make sure it's extension is not one of the bad extensions > TCHAR *szBadExtensions = _T(".exe;.dll"); > if (IsFileExtension(szFilename, szBadExtensions)) > --- 239,243 ---- > } > > ! // Make sure its extension is not one of the bad extensions > TCHAR *szBadExtensions = _T(".exe;.dll"); > if (IsFileExtension(szFilename, szBadExtensions)) > *************** > *** 328,332 **** > if ( ( ERROR_SUCCESS != rk.Open( HKEY_CLASSES_ROOT, > szProtocolHandlerKey, KEY_READ ) ) > || > ! ( ERROR_SUCCESS != rk.QueryValue( szProtocolHandler, _T(""), > &dwCount ) ) ) > { > Error(IDS_ERR_PROTOCOLNOTFOUND, IID_ILauncher); > --- 328,332 ---- > if ( ( ERROR_SUCCESS != rk.Open( HKEY_CLASSES_ROOT, > szProtocolHandlerKey, KEY_READ ) ) > || > ! ( ERROR_SUCCESS != rk.QueryValue( _T(""), NULL, > szProtocolHandler, &dwCount ) ) ) > { > Error(IDS_ERR_PROTOCOLNOTFOUND, IID_ILauncher); > *************** > *** 862,866 **** > > DWORD dwCount = sizeof(m_szInstallDir); > ! ret = rk.QueryValue( m_szInstallDir, _T("InstallDir"), > &dwCount ); > if ( ERROR_SUCCESS != ret ) > { > --- 862,866 ---- > > DWORD dwCount = sizeof(m_szInstallDir); > ! ret = rk.QueryValue( _T("InstallDir"), NULL, m_szInstallDir, > &dwCount ); > if ( ERROR_SUCCESS != ret ) > { > > Index: StdAfx.cpp > =================================================================== > RCS file: /cvsroot/dqsd/dqsd/src/DQSDTools/StdAfx.cpp,v > retrieving revision 1.3 > retrieving revision 1.4 > diff -C2 -d -r1.3 -r1.4 > *** StdAfx.cpp 19 Apr 2002 04:58:51 -0000 1.3 > --- StdAfx.cpp 12 Feb 2006 02:09:10 -0000 1.4 > *************** > *** 7,15 **** > #ifdef _ATL_STATIC_REGISTRY > #include <statreg.h> > - #include <statreg.cpp> > #endif > > - #include <atlimpl.cpp> > - > #include "utilities.h" > > --- 7,12 ---- > > Index: StdAfx.h > =================================================================== > RCS file: /cvsroot/dqsd/dqsd/src/DQSDTools/StdAfx.h,v > retrieving revision 1.11 > retrieving revision 1.12 > diff -C2 -d -r1.11 -r1.12 > *** StdAfx.h 8 Jul 2002 10:32:04 -0000 1.11 > --- StdAfx.h 12 Feb 2006 02:09:10 -0000 1.12 > *************** > *** 40,44 **** > --- 40,46 ---- > #pragma warning(push, 3) > > + #pragma warning (disable : 4702) // warning C4702: unreachable code > #include <map> > + #pragma warning (default : 4702) > #include <string> > > > Index: Utilities.cpp > =================================================================== > RCS file: /cvsroot/dqsd/dqsd/src/DQSDTools/Utilities.cpp,v > retrieving revision 1.8 > retrieving revision 1.9 > diff -C2 -d -r1.8 -r1.9 > *** Utilities.cpp 6 Jul 2004 13:39:57 -0000 1.8 > --- Utilities.cpp 12 Feb 2006 02:09:10 -0000 1.9 > *************** > *** 79,82 **** > --- 79,83 ---- > catch(_com_error& e) > { > + e; > ATLTRACE("UtilitiesFindDQSDWindow: COM exception: Desc %s, > Message %d\n", > (LPCTSTR)e.Description(), > > > > ------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. Do you grep through log > files > for problems? Stop! Download the new AJAX search engine that makes > searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 > _______________________________________________ > DQSD-CVS mailing list > https://lists.sourceforge.net/lists/listinfo/dqsd-cvs > DQSD CVS repository: > http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/dqsd/ ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ Archive: https://lists.sourceforge.net/lists/listinfo/dqsd-devel
