From: <ma...@us...> - 2003-05-23 02:20:51
|
Update of /cvsroot/decaldev/source/Include In directory sc8-pr-cvs1:/tmp/cvs-serv7944/Include Modified Files: DecalImpl.h Log Message: Lots of warning cleanup, and add ReleaseMinDependency configuration to all projects that don't have it (or equivalent). Remove dependence on C Runtime completely. Index: DecalImpl.h =================================================================== RCS file: /cvsroot/decaldev/source/Include/DecalImpl.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DecalImpl.h 21 Sep 2002 22:25:07 -0000 1.3 --- DecalImpl.h 23 May 2003 02:20:48 -0000 1.4 *************** *** 147,158 **** if( vName.vt == VT_BSTR ) ! rk.SetValue( OLE2T( vName.bstrVal ) ); LPTSTR szSurrogate = OLE2T( strSurrogate ); ! rk.SetValue( 1, _T( "Enabled" ) ); ! rk.SetValue( szSurrogate, _T( "Surrogate" ) ); ! rk.SetValue( OLE2T( strUninstall ), _T( "Uninstall" ) ); ! rk.SetValue( OLE2T( strFilename ), _T( "File" ) ); if( vProgID.vt == VT_BSTR ) --- 147,159 ---- if( vName.vt == VT_BSTR ) ! rk.SetStringValue (NULL, OLE2T( vName.bstrVal )); LPTSTR szSurrogate = OLE2T( strSurrogate ); ! rk.SetDWORDValue (_T("Enabled"), 1); ! rk.SetStringValue (_T("Surrogate"), szSurrogate); ! ! rk.SetStringValue ( _T("Uninstall"), OLE2T( strUninstall )); ! rk.SetStringValue( _T("File"), OLE2T( strFilename ) ); if( vProgID.vt == VT_BSTR ) *************** *** 164,168 **** rkProgID.SetKeyValue( _T( "CLSID" ), szKey ); ! rk.SetValue( szProgID, _T( "ProgID" ) ); } --- 165,169 ---- rkProgID.SetKeyValue( _T( "CLSID" ), szKey ); ! rk.SetStringValue( _T("ProgID"), szProgID ); } |