From: <ci...@us...> - 2002-08-24 02:29:47
|
Update of /cvsroot/decaldev/source/DenAgent In directory usw-pr-cvs1:/tmp/cvs-serv23297/DenAgent Modified Files: StdAfx.h Log Message: Additions to make Decal more STL compliant compilation-wise with header header files. This adds in some #includes for <string> and <stdio.h> in the few places where you were getting it for free the DevStudio automagic but should have been including them to begin with. Changes have been tested both with and without STLport (www.stlport.com) in the paths for compilations purposes. No functional code changes have been made just the #include additions. Index: StdAfx.h =================================================================== RCS file: /cvsroot/decaldev/source/DenAgent/StdAfx.h,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** StdAfx.h 17 Jun 2002 07:12:30 -0000 1.7 --- StdAfx.h 24 Aug 2002 02:29:43 -0000 1.8 *************** *** 44,47 **** --- 44,48 ---- #import <msxml.dll> #include <list> + #include <string> extern LONG g_fAbortDownload; |