Revision: 201011 RCL_3
authorDremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 31 Mar 2010 23:10:55 +0300
branchRCL_3
changeset 9 7c80ebddf816
parent 8 1871e4cafb97
child 10 b5f2d4dc5e69
Revision: 201011 Kit: 201013
aknlayoutcompiler/binary/AknLayoutCompiler-vc.exe
aknlayoutcompiler/binary/AknLayoutCompiler.exe
cdlcompiler/binary/CdlCompiler-vc.EXE
cdlcompiler/binary/CdlCompiler.EXE
cdlcompiler/group/bld.inf
package_definition.xml
reszip/inc/rescomp.h
reszip/inc/resdict.h
reszip/src/rescomp.cpp
reszip/src/resdict.cpp
svgtencoder/svgtenc/standalone/group/SVGEncoder_CPP.dsp
svgtencoder/svgtenc/standalone/group/SVGEncoder_CPP.dsw
svgtencoder/svgtenc/standalone/group/SYMDEFCPPDLL.dsp
svgtencoder/svgtenc/standalone/group/svgtbinencoder.mk
svgtencoder/svgtenc/standalone/lib/SVGTBinEncode.exe
svgtencoder/svgtenc/standalone/lib/SYMDEFCPPDLL.dll
svgtencoder/svgtenc/standalone/lib/SYMDEFCPPDLL.lib
svgtencoder/svgtenc/standalone/lib/xerces-c_2.lib
svgtencoder/svgtenc/standalone/lib/xerces-c_2D.lib
svgtencoder/svgtenc/standalone/lib/xerces-c_2_6.dll
Binary file aknlayoutcompiler/binary/AknLayoutCompiler-vc.exe has changed
Binary file aknlayoutcompiler/binary/AknLayoutCompiler.exe has changed
Binary file cdlcompiler/binary/CdlCompiler-vc.EXE has changed
Binary file cdlcompiler/binary/CdlCompiler.EXE has changed
--- a/cdlcompiler/group/bld.inf	Mon Mar 15 12:44:40 2010 +0200
+++ b/cdlcompiler/group/bld.inf	Wed Mar 31 23:10:55 2010 +0300
@@ -21,7 +21,7 @@
 
 PRJ_EXPORTS
 
-../binary/CdlCompiler.EXE /epoc32/tools/CdlCompiler.EXE 
+../binary/CdlCompiler.exe /epoc32/tools/CdlCompiler.exe 
 
 PRJ_MMPFILES
 
--- a/package_definition.xml	Mon Mar 15 12:44:40 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<SystemDefinition schema="3.0.0">
-  <package id="uitools" name="UI Tools" levels="compile encode tool if">
-    <collection id="gfxtools" name="Graphics Tools" level="tool">
-      <component id="gditools" filter="s60" name="GDI Tools" target="desktop">
-        <unit bldFile="gfxtools/gditools/group"/>
-      </component>
-      <component id="color" filter="s60" name="Bitmap Colour Palette" target="desktop">
-        <unit bldFile="gfxtools/color/group"/>
-      </component>
-    </collection>
-    <collection id="reszip" name="Resource Zip" level="encode">
-      <component id="reszip_build" filter="s60" name="Resource Zip Build">
-        <unit bldFile="reszip/group"/>
-      </component>
-    </collection>
-    <collection id="toollibraries" name="Tool Libraries" level="tool"/>
-    <collection id="svgtencoder" name="SVGT Encoder" level="encode">
-      <component id="svgtenc" filter="s60" name="SVGT Encoder" target="desktop">
-        <unit bldFile="svgtencoder/svgtenc/standalone/group"/>
-      </component>
-    </collection>
-    <collection id="uitools_info" name="UI Tools Info" level="if">
-      <component id="uitools_plat" filter="s60" name="UI Tools Platform Interfaces" class="api">
-        <unit bldFile="uitools_plat/group"/>
-      </component>
-      <component id="uitools_pub" filter="s60" name="UI Tools Public Interfaces" class="api">
-        <unit bldFile="uitools_pub/group"/>
-      </component>
-    </collection>
-  </package>
-</SystemDefinition>
--- a/reszip/inc/rescomp.h	Mon Mar 15 12:44:40 2010 +0200
+++ b/reszip/inc/rescomp.h	Wed Mar 31 23:10:55 2010 +0300
@@ -59,7 +59,7 @@
 	void LoadUnCompressedFileL(RFs& aFs, const TDesC& aName);
 	TBool FileIsBAFLCompressedL(RFs& aFs, const TDesC& aName);
 
-	void OptimizeDict();
+	void OptimizeDictL();
 	void FindEmbeddedDict(TDesC8& aMatch, TInt aStart);
 	void WriteHeaderL(RWriteStream& aStream);
 	void WriteDictionaryL(RWriteStream& aStream);
--- a/reszip/inc/resdict.h	Mon Mar 15 12:44:40 2010 +0200
+++ b/reszip/inc/resdict.h	Wed Mar 31 23:10:55 2010 +0300
@@ -37,7 +37,7 @@
 	TInt Saved();
 	TDesC8& Data();
 	TInt Use();
-	void CreateEmbeddedDict(TInt aDictIndex,CDictArray* aDict);
+	void CreateEmbeddedDictL(TInt aDictIndex,CDictArray* aDict);
 public:
 	TBufC8<KMaxDictEntry> iData;
 	TInt iUses;
--- a/reszip/src/rescomp.cpp	Mon Mar 15 12:44:40 2010 +0200
+++ b/reszip/src/rescomp.cpp	Wed Mar 31 23:10:55 2010 +0300
@@ -426,7 +426,7 @@
 
 	// Optimize Dictionary
 
-	OptimizeDict();
+	OptimizeDictL();
 
 	// Compress using optimized dictionary
 
@@ -527,7 +527,7 @@
 
 
 
-void CResComp::OptimizeDict()
+void CResComp::OptimizeDictL()
 	{
 	// Find referenced dicts
 	TInt entries = iDict->Count();
@@ -565,7 +565,7 @@
 
 	for (TInt zz=0; zz<newDictEntries; zz++)
 		{
-		iDict->At(zz).CreateEmbeddedDict(zz, iDict);
+		iDict->At(zz).CreateEmbeddedDictL(zz, iDict);
 		}
 	}
 
--- a/reszip/src/resdict.cpp	Mon Mar 15 12:44:40 2010 +0200
+++ b/reszip/src/resdict.cpp	Wed Mar 31 23:10:55 2010 +0300
@@ -48,7 +48,7 @@
 	}
 
 
-void TDictEntry::CreateEmbeddedDict(TInt aDictIndex,CDictArray* aDict)
+void TDictEntry::CreateEmbeddedDictL(TInt aDictIndex,CDictArray* aDict)
 	{
 	// Create list of embedded dictionary strings
 	iEmbedded = new(ELeave)CResEntry(aDict);
--- a/svgtencoder/svgtenc/standalone/group/SVGEncoder_CPP.dsp	Mon Mar 15 12:44:40 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,1107 +0,0 @@
-# Microsoft Developer Studio Project File - Name="SVGEncoder_CPP" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Console Application" 0x0103
-
-CFG=SVGEncoder_CPP - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "SVGEncoder_CPP.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "SVGEncoder_CPP.mak" CFG="SVGEncoder_CPP - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "SVGEncoder_CPP - Win32 Release" (based on "Win32 (x86) Console Application")
-!MESSAGE "SVGEncoder_CPP - Win32 Debug" (based on "Win32 (x86) Console Application")
-!MESSAGE 
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName ""
-# PROP Scc_LocalPath ""
-CPP=cl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "SVGEncoder_CPP - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
-# ADD CPP /nologo /W3 /GX /I "..\Internal\SVGEngine\inc" /I "..\Internal\Gfx2D\inc" /I "..\Internal\Gfx2D\VGRasterizer\inc" /I "..\Internal\Xmldomimpl\inc" /I "..\Internal\SVGImpl\inc\SVGDOM" /I "..\Internal\SVGImpl\inc" /I "..\xerces-c-src_2_6_0" /I "..\Internal\Path\inc" /I "..\Internal\xmlReader\inc" /I "..\Internal\Sax2Print" /I "..\Internal\Nvg\inc" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /D /c
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
-# ADD LINK32 symdefcppdll.lib xerces-c_2.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386 /nodefaultlib:"LIBCMT" /nodefaultlib:"MSVCRTD" /out:"Release/SVGTBINENCODE.exe" /libpath:"..\Internal\lib"
-# SUBTRACT LINK32 /pdb:none
-
-!ELSEIF  "$(CFG)" == "SVGEncoder_CPP - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "Debug"
-# PROP Intermediate_Dir "Debug"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
-# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "..\Internal\SVGEngine\inc" /I "..\Internal\Gfx2D\inc" /I "..\Internal\Gfx2D\VGRasterizer\inc" /I "..\Internal\Xmldomimpl\inc" /I "..\Internal\SVGImpl\inc\SVGDOM" /I "..\Internal\SVGImpl\inc" /I "..\xerces-c-src_2_6_0" /I "..\Internal\Path\inc" /I "..\Internal\xmlReader\inc" /I "..\Internal\Sax2Print" /I "..\Internal\Nvg\inc" /I "C:\Program Files\Microsoft Visual Studio\VC98\MFC\SRC" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D "ARM" /FR /YX /FD /D /GZ /c
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo /o"Debug/SVGTBINENCODE.bsc"
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib xerces-c_2.lib symdefcppdll.lib /nologo /subsystem:console /debug /machine:I386 /out:"Debug/SVGTBINENCODE.exe" /pdbtype:sept /libpath:"..\lib"
-# SUBTRACT LINK32 /pdb:none
-
-!ENDIF 
-
-# Begin Target
-
-# Name "SVGEncoder_CPP - Win32 Release"
-# Name "SVGEncoder_CPP - Win32 Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxAffineTransform.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGc\GfxColor.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxEllipse2D.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxEllipseIteratorP.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxFlatteningPathIterator.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxFloatFixPt.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxGeneralPath.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxGeneralPathIteratorP.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGc\GfxGradientPaint.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxLine2D.cpp
-
-!IF  "$(CFG)" == "SVGEncoder_CPP - Win32 Release"
-
-!ELSEIF  "$(CFG)" == "SVGEncoder_CPP - Win32 Debug"
-
-# ADD CPP /w /W0
-# SUBTRACT CPP /O<none>
-
-!ENDIF 
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxLineIteratorP.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxPoint2D.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxRectangle2D.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxRectangleIteratorP.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxRectangularShape.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxRoundRectangle2D.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\GfxGeom\GfxRoundRectangleIteratorP.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\src\Gfxtrignometric.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\xmlReader\src\MyRXMLReader.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGCircleElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NvgCommandSection.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGDefElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGElementFactory.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGEllipseElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGEncoder.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGGElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NvgHeaderSection.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGLinearGradientElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGLineElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NvgOffsetVector.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NvgPaintSection.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGPathElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NvgPathSection.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGPolygonElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGRadialGradientElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGRectElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGStopElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\src\NVGSVGElement.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Sax2Print\SAX2PrintHandlers.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGAElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGAnimateElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGAnimateMotionElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGAnimateTransformElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGAnimationBase.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGAnimTimeController.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGAnimTimingParser.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\VGRasterizer\src\svgapi.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\src\SVGAttributeVerifier.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGAudioElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGCircleElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGClrCssValueImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGColor.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\src\SVGContentHandler.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGDiscardElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGDocumentImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGDOMImplementationImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGEllipseElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\src\Svgencoder.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\src\Svgencodermain.cpp
-
-!IF  "$(CFG)" == "SVGEncoder_CPP - Win32 Release"
-
-# ADD CPP /ZI /FAcs
-
-!ELSEIF  "$(CFG)" == "SVGEncoder_CPP - Win32 Debug"
-
-!ENDIF 
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\src\SVGEngineImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\src\SVGErrorImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\src\SVGEvent.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGFitToViewBoxImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGFloatCssValueImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGFontElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGFontFaceElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGFontMap.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGGElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGGlyphElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGGradientElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SvgHkernelementimpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGImageElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGIntCssValueImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGLangSpaceImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGLinearGradientElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGLineElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\VGRasterizer\src\svgmath.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGMediaAnimationElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGMediaElementBase.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGMissingGlyphElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGMpathElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGPaintCssValueImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\VGRasterizer\src\svgpath.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGPathDataParser.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGPathElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGPointLexer.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGPolylineElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGPreserveAspectRatioImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGRadialGradientElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGRectElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGRelToAbsPath.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGSchemaData.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGSetElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGSolidColorElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGStopElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGStrCssValueImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGStringTokenizer.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGStyleElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\VGRasterizer\src\svgsubdivide.c
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\Svgsvgelementimpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\src\SVGTEncodeInterfaceImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGTestsImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGTextElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGTransformableImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGTransformListImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGUriReferenceImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGUseElementImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\src\SVGVectorCssValueImpl.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Xmldomimpl\src\SVGXmlElementImpl.cpp
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxAffineTransform.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxColor.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxEllipse2D.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxEllipseIteratorP.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxFlatteningPathIterator.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxFloatFixPt.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxFloatFixPt.inl
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxGeneralPath.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxGeneralPathIteratorP.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxGradientPaint.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxLine2D.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxLineIteratorP.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxPaint.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxPathIterator.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxPoint2D.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxRectangle2D.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxRectangleIteratorP.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxRectangularShape.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxRoundRectangle2D.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxRoundRectangleIteratorP.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxShape.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\GfxStroke.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\inc\Gfxtrignometric.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Path\inc\MyUTF.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGCircleElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NvgCommandSection.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGDefElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGElementFactory.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGEllipseElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGEncoder.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGGElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NvgHeaderSection.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGLinearGradientElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGLineElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NvgOffsetVector.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NvgPaintSection.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGPathElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NvgPathSection.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGPolygonElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGRadialGradientElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGRectElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGStopElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Nvg\inc\NVGSVGElement.h
-# End Source File
-# Begin Source File
-
-SOURCE="C:\Program Files\Microsoft Visual Studio\VC98\Include\STRING.H"
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Path\inc\svg2bintype.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGAElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGAnimateElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGAnimateMotionElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGAnimateTransformElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGAnimationBase.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGAnimTimeController.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGAnimTimingParser.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\SVGAttributeVerifier.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGAudioElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGCircleElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGClrCssValueImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGColor.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\SVGContentHandler.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGCssValue.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\VGRasterizer\inc\svgdef.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDiscardElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDocumentImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOMImplementationImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGElementTimeControl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGEllipseElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\SVGEncoder.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\SVGEngineImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\SVGErrorImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\SVGEvent.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\SVGEventReceiver.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGFitToViewBox.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGFitToViewBoxImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGFloatCssValueImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGFontElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGFontFaceElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGFontMap.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGGElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGGlyphElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGGradientElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SvgHkernelementimpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGImageElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGIntCssValueImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGLangSpace.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGLangSpaceImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGLinearGradientElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGLineElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGLocatable.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\VGRasterizer\inc\svgmath.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGMediaAnimationElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGMediaElementBase.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGMissingGlyphElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGMpathElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGPaintCssValueImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGPathDataParser.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGPathElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGPointLexer.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGPolylineElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGPreserveAspectRatio.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGPreserveAspectRatioImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGRadialGradientElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Gfx2D\VGRasterizer\inc\svgrasterizer.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGRectElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGRelToAbsPath.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\SVGRequestObserver.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGSchemaData.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGSetElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGSolidColorElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SvgStopElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGStrCssValueImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGStringTokenizer.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGStyleElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGSvgElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\Svgtencodeinterface.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGEngine\inc\Svgtencodeinterfaceimpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGTests.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGTestsImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGTextElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGTransformable.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGTransformableImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGTransformList.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGTransformListImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGUriReference.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGUriReferenceImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGUseElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGVectorCssValueImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Xmldomimpl\inc\SVGXmlDocument.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Xmldomimpl\inc\SVGXmlDOMImplementation.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Xmldomimpl\inc\SVGXmlElement.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Xmldomimpl\inc\SVGXmlElementImpl.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGXmlElementOpt.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\SVGImpl\inc\SVGDOM\SVGZoomAndPan.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Path\inc\symdef.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Path\inc\symdef.inl
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\Path\inc\symdefclass.h
-# End Source File
-# End Group
-# Begin Group "Resource Files"
-
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
-# End Group
-# End Target
-# End Project
--- a/svgtencoder/svgtenc/standalone/group/SVGEncoder_CPP.dsw	Mon Mar 15 12:44:40 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,48 +0,0 @@
-Microsoft Developer Studio Workspace File, Format Version 6.00
-# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
-
-###############################################################################
-
-Project: "SVGEncoder_CPP"=.\SVGEncoder_CPP.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-}}}
-
-Package=<4>
-{{{
-    Begin Project Dependency
-    Project_Dep_Name SYMDEFCPPDLL
-    End Project Dependency
-}}}
-
-###############################################################################
-
-Project: "SYMDEFCPPDLL"=.\SYMDEFCPPDLL.dsp - Package Owner=<4>
-
-Package=<5>
-{{{
-    begin source code control
-    SYMDEFCPPDLL
-    ..\testingsymdefcppdll
-    end source code control
-}}}
-
-Package=<4>
-{{{
-}}}
-
-###############################################################################
-
-Global:
-
-Package=<5>
-{{{
-}}}
-
-Package=<3>
-{{{
-}}}
-
-###############################################################################
-
--- a/svgtencoder/svgtenc/standalone/group/SYMDEFCPPDLL.dsp	Mon Mar 15 12:44:40 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,257 +0,0 @@
-# Microsoft Developer Studio Project File - Name="SYMDEFCPPDLL" - Package Owner=<4>
-# Microsoft Developer Studio Generated Build File, Format Version 6.00
-# ** DO NOT EDIT **
-
-# TARGTYPE "Win32 (x86) Dynamic-Link Library" 0x0102
-
-CFG=SYMDEFCPPDLL - Win32 Debug
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,
-!MESSAGE use the Export Makefile command and run
-!MESSAGE 
-!MESSAGE NMAKE /f "SYMDEFCPPDLL.mak".
-!MESSAGE 
-!MESSAGE You can specify a configuration when running NMAKE
-!MESSAGE by defining the macro CFG on the command line. For example:
-!MESSAGE 
-!MESSAGE NMAKE /f "SYMDEFCPPDLL.mak" CFG="SYMDEFCPPDLL - Win32 Debug"
-!MESSAGE 
-!MESSAGE Possible choices for configuration are:
-!MESSAGE 
-!MESSAGE "SYMDEFCPPDLL - Win32 Release" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE "SYMDEFCPPDLL - Win32 Debug" (based on "Win32 (x86) Dynamic-Link Library")
-!MESSAGE 
-
-# Begin Project
-# PROP AllowPerConfigDependencies 0
-# PROP Scc_ProjName "SYMDEFCPPDLL"
-# PROP Scc_LocalPath "..\Internal\testingsymdefcppdll"
-CPP=cl.exe
-MTL=midl.exe
-RSC=rc.exe
-
-!IF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Release"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 0
-# PROP BASE Output_Dir "Release"
-# PROP BASE Intermediate_Dir "Release"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 1
-# PROP Use_Debug_Libraries 0
-# PROP Output_Dir "Release"
-# PROP Intermediate_Dir "Release"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "SYMDEFCPPDLL_EXPORTS" /YX /FD /c
-# ADD CPP /nologo /MT /W3 /GX /Zi /Od /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "SYMDEFCPPDLL_EXPORTS" /D "_WINDLL" /YX /FD /c
-# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /win32
-# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /win32
-# ADD BASE RSC /l 0x409 /d "NDEBUG"
-# ADD RSC /l 0x409
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /machine:I386
-# ADD LINK32 /nologo /dll /machine:I386
-# SUBTRACT LINK32 /debug
-
-!ELSEIF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Debug"
-
-# PROP BASE Use_MFC 0
-# PROP BASE Use_Debug_Libraries 1
-# PROP BASE Output_Dir "Debug"
-# PROP BASE Intermediate_Dir "Debug"
-# PROP BASE Target_Dir ""
-# PROP Use_MFC 0
-# PROP Use_Debug_Libraries 1
-# PROP Output_Dir "Debug"
-# PROP Intermediate_Dir "Debug"
-# PROP Ignore_Export_Lib 0
-# PROP Target_Dir ""
-# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "SYMDEFCPPDLL_EXPORTS" /YX /FD /GZ /c
-# ADD CPP /nologo /MDd /W4 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_USRDLL" /D "SYMDEFCPPDLL_EXPORTS" /FR /YX /FD /MLD /GZ /c
-# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /win32
-# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /win32
-# ADD BASE RSC /l 0x409 /d "_DEBUG"
-# ADD RSC /l 0x409 /d "_DEBUG"
-BSC32=bscmake.exe
-# ADD BASE BSC32 /nologo
-# ADD BSC32 /nologo
-LINK32=link.exe
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /dll /debug /machine:I386 /pdbtype:sept
-# SUBTRACT LINK32 /profile /pdb:none /nodefaultlib
-
-!ENDIF 
-
-# Begin Target
-
-# Name "SYMDEFCPPDLL - Win32 Release"
-# Name "SYMDEFCPPDLL - Win32 Debug"
-# Begin Group "Source Files"
-
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Buf.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Des16.cpp
-
-!IF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Release"
-
-# ADD CPP /Od
-
-!ELSEIF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Debug"
-
-!ENDIF 
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Des8.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Desc16.cpp
-
-!IF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Release"
-
-# ADD CPP /Od
-
-!ELSEIF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Debug"
-
-!ENDIF 
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Desc8.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Hbufc16.cpp
-
-!IF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Release"
-
-# ADD CPP /Od
-
-!ELSEIF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Debug"
-
-!ENDIF 
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Hbufc8.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Rfile.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Rpointerarraybase.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tbufbase16.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tbufbase8.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\TBufC.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tbufcbase16.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tbufcbase8.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tchar.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\TInt64.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tkeydesc8array.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tlex.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tptr16.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tptr8.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tptrc16.cpp
-
-!IF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Release"
-
-# ADD CPP /Od
-
-!ELSEIF  "$(CFG)" == "SYMDEFCPPDLL - Win32 Debug"
-
-!ENDIF 
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Tptrc8.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\Trgb.cpp
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\utf.cpp
-# End Source File
-# End Group
-# Begin Group "Header Files"
-
-# PROP Default_Filter "h;hpp;hxx;hm;inl"
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\svg2bintype.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\symdef.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\symdef.inl
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\symdefclass.h
-# End Source File
-# Begin Source File
-
-SOURCE=..\Internal\testingsymdefcppdll\UTF.H
-# End Source File
-# End Group
-# Begin Group "Resource Files"
-
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
-# End Group
-# End Target
-# End Project
--- a/svgtencoder/svgtenc/standalone/group/svgtbinencoder.mk	Mon Mar 15 12:44:40 2010 +0200
+++ b/svgtencoder/svgtenc/standalone/group/svgtbinencoder.mk	Wed Mar 31 23:10:55 2010 +0300
@@ -2,7 +2,7 @@
 # Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
 # All rights reserved.
 # This component and the accompanying materials are made available
-# under the terms of the License "Eclipse Public License v1.0"
+# under the terms of "Eclipse Public License v1.0"
 # which accompanies this distribution, and is available
 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
 #
Binary file svgtencoder/svgtenc/standalone/lib/SVGTBinEncode.exe has changed
Binary file svgtencoder/svgtenc/standalone/lib/SYMDEFCPPDLL.dll has changed
Binary file svgtencoder/svgtenc/standalone/lib/SYMDEFCPPDLL.lib has changed
Binary file svgtencoder/svgtenc/standalone/lib/xerces-c_2.lib has changed
Binary file svgtencoder/svgtenc/standalone/lib/xerces-c_2D.lib has changed
Binary file svgtencoder/svgtenc/standalone/lib/xerces-c_2_6.dll has changed