Binary file aknlayoutcompiler/binary/AknLayoutCompiler.exe has changed
Binary file cdlcompiler/binary/CdlCompiler.EXE has changed
--- a/cdlcompiler/group/bld.inf Tue Jan 26 12:55:26 2010 +0200
+++ b/cdlcompiler/group/bld.inf Fri Apr 16 16:02:07 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/gfxtools/Color/group/convcolor.mk Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/Color/group/convcolor.mk Fri Apr 16 16:02:07 2010 +0300
@@ -38,7 +38,7 @@
SAVESPACE : do_nothing
-RELEASABLES : ;
+RELEASABLES :
FINAL : do_nothing
--- a/gfxtools/gditools/fontcomp/DISTRIBUTION.POLICY Tue Jan 26 12:55:26 2010 +0200
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-Category T
-OSD: Reference/Test Bitmap and font conversion utilities (GDITOOLS)
--- a/gfxtools/gditools/fontcomp/EFF.CPP Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/gditools/fontcomp/EFF.CPP Fri Apr 16 16:02:07 2010 +0300
@@ -16,7 +16,7 @@
*/
-#include "FONTCOMP.H"
+#include "fontcomp.h"
EffRead::EffRead(fstream& aFile,FontCompiler& aFontCompiler,Fxf* aFxf,short int* aMapSpace):
FontRead(aFile,aFontCompiler,aFxf),
--- a/gfxtools/gditools/fontcomp/FONTCOMP.CPP Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/gditools/fontcomp/FONTCOMP.CPP Fri Apr 16 16:02:07 2010 +0300
@@ -15,8 +15,7 @@
*
*/
-
-#include "FONTCOMP.H"
+#include "fontcomp.h"
FontCompiler::FontCompiler():
iInputFile(),
@@ -40,7 +39,7 @@
#ifdef __MSVCDOTNET__
fstream tempfile(mapfile, ios::in | ios::binary);
#else //!__MSVCDOTNET__
- fstream tempfile(mapfile, ios::in | ios::binary | ios::nocreate);
+ fstream tempfile(mapfile, ios::in | ios::binary);
#endif //__MSVCDOTNET__
if(!tempfile.is_open())
@@ -53,7 +52,7 @@
#ifdef __MSVCDOTNET__
iInputFile.open(infile, ios::in | ios::binary);
#else //!__MSVCDOTNET__
- iInputFile.open(infile, ios::in | ios::binary | ios::nocreate);
+ iInputFile.open(infile, ios::in | ios::binary);
#endif //__MSVCDOTNET__
if(!(iOutputFile.is_open() && iInputFile.is_open()))
@@ -150,7 +149,7 @@
bit>>=1;
if (bit==0)
{
- bit=unsigned char(0x80);
+ bit= (unsigned char)0x80;
pb--;
}
}
--- a/gfxtools/gditools/fontcomp/FONTCOMP.H Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/gditools/fontcomp/FONTCOMP.H Fri Apr 16 16:02:07 2010 +0300
@@ -20,7 +20,7 @@
#define __FONTCOMP_H__
#include <stdlib.h>
#include <string.h>
-#include <io.h>
+#include <stdio.h>
#ifdef __MSVCDOTNET__
#include <fstream>
--- a/gfxtools/gditools/fontcomp/FSC.CPP Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/gditools/fontcomp/FSC.CPP Fri Apr 16 16:02:07 2010 +0300
@@ -16,7 +16,7 @@
*/
-#include "FONTCOMP.H"
+#include "fontcomp.h"
FscRead::FscRead(fstream& aFile,FontCompiler& aFontCompiler,Fxf* aFxf):
FontRead(aFile,aFontCompiler,aFxf)
--- a/gfxtools/gditools/fontcomp/GDSFCOMP.CPP Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/gditools/fontcomp/GDSFCOMP.CPP Fri Apr 16 16:02:07 2010 +0300
@@ -16,8 +16,10 @@
*/
-#include "GDSFCOMP.H"
-#include "TOOLSVER.H"
+#include "gdsfcomp.h"
+#include "toolsver.h"
+
+#include <sstream>
int GdsFontCompiler::WriteFont()
{
@@ -155,7 +157,7 @@
WriteFormattedData(buf,1);
}
-void GdsFontCompiler::WriteFormattedData(char* aData,int aNewLine)
+void GdsFontCompiler::WriteFormattedData(const char* aData,int aNewLine)
{
if(aData)
iOutputFile << aData;
@@ -165,9 +167,11 @@
void GdsFontCompiler::WriteFormattedData(int aNum,int aNewLine)
{
- char numbuf[16];
- _itoa(aNum,numbuf,10);
- WriteFormattedData(numbuf,aNewLine);
+ std::stringstream ss;
+
+ ss << aNum;
+
+ WriteFormattedData(ss.str().c_str(), aNewLine);
}
void GdsFontCompiler::WriteNewLine()
--- a/gfxtools/gditools/fontcomp/GDSFCOMP.H Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/gditools/fontcomp/GDSFCOMP.H Fri Apr 16 16:02:07 2010 +0300
@@ -19,7 +19,7 @@
#if !defined(__GDSFCOMP_H__)
#define __GDSFCOMP_H__
#if !defined(__FONTCOMP_H__)
-#include "FONTCOMP.H"
+#include "fontcomp.h"
#endif
/**
@internalComponent
@@ -39,7 +39,7 @@
void WriteFooter();
void WriteCharData(int);
void WriteBlankLines(int,int);
- void WriteFormattedData(char*,int=0);
+ void WriteFormattedData(const char*,int=0);
void WriteFormattedData(int,int=0);
void WriteNewLine();
};
--- a/gfxtools/gditools/group/FONTCOMP.MMP Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/gditools/group/FONTCOMP.MMP Fri Apr 16 16:02:07 2010 +0300
@@ -22,6 +22,7 @@
TARGETTYPE exe
USERINCLUDE ../inc
+USERINCLUDE ../fontcomp
USERINCLUDE ../../../inc
USERINCLUDE ../../inc
--- a/gfxtools/gditools/group/bld.inf Tue Jan 26 12:55:26 2010 +0200
+++ b/gfxtools/gditools/group/bld.inf Fri Apr 16 16:02:07 2010 +0300
@@ -25,7 +25,7 @@
PRJ_PLATFORMS
-TOOLS
+TOOLS TOOLS2
PRJ_EXPORTS
@@ -34,9 +34,9 @@
PRJ_MMPFILES
-#ifdef TOOLS
+#if (defined TOOLS ) || (defined TOOLS2)
-../group/FONTCOMP.MMP
+../group/fontcomp.mmp
// NOTICE! Bmconv is moved to /s60/tools/platformtools/gfxtools/bmconv/group
--- a/package_definition.xml Tue Jan 26 12:55:26 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/group/bld.inf Tue Jan 26 12:55:26 2010 +0200
+++ b/reszip/group/bld.inf Fri Apr 16 16:02:07 2010 +0300
@@ -25,9 +25,9 @@
PRJ_MMPFILES
#ifndef TOOLS
- #ifndef TOOLS2
- reszip.mmp
- #endif
+#ifndef TOOLS2
+reszip.mmp
+#endif
#endif
PRJ_TESTMMPFILES
Binary file svgtencoder/svgtenc/standalone/binary/svgtbinencode.exe has changed
--- a/svgtencoder/svgtenc/standalone/group/SVGEncoder_CPP.dsp Tue Jan 26 12:55:26 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 Tue Jan 26 12:55:26 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>
-{{{
-}}}
-
-###############################################################################
-
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/svgtencoder/svgtenc/standalone/group/SVGEncoder_CPP.sln Fri Apr 16 16:02:07 2010 +0300
@@ -0,0 +1,20 @@
+
+Microsoft Visual Studio Solution File, Format Version 10.00
+# Visual Studio 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "SVGEncoder_CPP", "SVGEncoder_CPP.vcproj", "{1D186CAE-9861-489C-92AF-FA33ACCFDB58}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Win32 = Debug|Win32
+ Release|Win32 = Release|Win32
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {1D186CAE-9861-489C-92AF-FA33ACCFDB58}.Debug|Win32.ActiveCfg = Debug|Win32
+ {1D186CAE-9861-489C-92AF-FA33ACCFDB58}.Debug|Win32.Build.0 = Debug|Win32
+ {1D186CAE-9861-489C-92AF-FA33ACCFDB58}.Release|Win32.ActiveCfg = Release|Win32
+ {1D186CAE-9861-489C-92AF-FA33ACCFDB58}.Release|Win32.Build.0 = Release|Win32
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+EndGlobal
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/svgtencoder/svgtenc/standalone/group/SVGEncoder_CPP.vcproj Fri Apr 16 16:02:07 2010 +0300
@@ -0,0 +1,2962 @@
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="9.00"
+ Name="SVGEncoder_CPP"
+ ProjectGUID="{1D186CAE-9861-489C-92AF-FA33ACCFDB58}"
+ TargetFrameworkVersion="0"
+ >
+ <Platforms>
+ <Platform
+ Name="Win32"
+ />
+ </Platforms>
+ <ToolFiles>
+ </ToolFiles>
+ <Configurations>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory=".\Release"
+ IntermediateDirectory=".\Release"
+ ConfigurationType="1"
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
+ UseOfMFC="0"
+ ATLMinimizesCRunTimeLibraryUsage="false"
+ CharacterSet="2"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ TypeLibraryName=".\Release/SVGEncoder_CPP.tlb"
+ HeaderFileName=""
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories="..\Internal\SVGEngine\inc,..\Internal\Gfx2D\inc,..\Internal\Gfx2D\VGRasterizer\inc,..\Internal\Xmldomimpl\inc,..\Internal\SVGImpl\inc\SVGDOM,..\Internal\SVGImpl\inc,..\xerces-c-src_2_6_0,..\Internal\Path\inc,..\Internal\xmlReader\inc,..\Internal\Sax2Print"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+ RuntimeLibrary="0"
+ PrecompiledHeaderFile=".\Release/SVGEncoder_CPP.pch"
+ AssemblerListingLocation=".\Release/"
+ ObjectFile=".\Release/"
+ ProgramDataBaseFileName=".\Release/"
+ BrowseInformation="1"
+ WarningLevel="3"
+ SuppressStartupBanner="true"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ Culture="1033"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="symdefcppdll.lib xerces-c_2.lib odbc32.lib odbccp32.lib"
+ OutputFile="Release/SVGTBINENCODE.exe"
+ LinkIncremental="1"
+ SuppressStartupBanner="true"
+ AdditionalLibraryDirectories="..\Internal\lib"
+ IgnoreDefaultLibraryNames="LIBCMT,MSVCRTD"
+ ProgramDatabaseFile=".\Release/SVGTBINENCODE.pdb"
+ SubSystem="1"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ SuppressStartupBanner="true"
+ OutputFile=".\Release/SVGEncoder_CPP.bsc"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory=".\Debug"
+ IntermediateDirectory=".\Debug"
+ ConfigurationType="1"
+ InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops"
+ UseOfMFC="0"
+ ATLMinimizesCRunTimeLibraryUsage="false"
+ CharacterSet="2"
+ >
+ <Tool
+ Name="VCPreBuildEventTool"
+ />
+ <Tool
+ Name="VCCustomBuildTool"
+ />
+ <Tool
+ Name="VCXMLDataGeneratorTool"
+ />
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"
+ />
+ <Tool
+ Name="VCMIDLTool"
+ TypeLibraryName=".\Debug/SVGEncoder_CPP.tlb"
+ HeaderFileName=""
+ />
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories="..\internal\nvg\inc;..\Internal\SVGEngine\inc;..\Internal\Gfx2D\inc;..\Internal\Gfx2D\VGRasterizer\inc;..\Internal\Xmldomimpl\inc;..\Internal\SVGImpl\inc\SVGDOM;..\Internal\SVGImpl\inc;..\Internal\Path\inc;..\Internal\xmlReader\inc;..\Internal\Sax2Print"
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE;"
+ MinimalRebuild="true"
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="3"
+ PrecompiledHeaderFile=".\Debug/SVGEncoder_CPP.pch"
+ AssemblerListingLocation=".\Debug/"
+ ObjectFile=".\Debug/"
+ ProgramDataBaseFileName=".\Debug/"
+ BrowseInformation="1"
+ WarningLevel="3"
+ SuppressStartupBanner="true"
+ DebugInformationFormat="4"
+ />
+ <Tool
+ Name="VCManagedResourceCompilerTool"
+ />
+ <Tool
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="_DEBUG"
+ Culture="1033"
+ />
+ <Tool
+ Name="VCPreLinkEventTool"
+ />
+ <Tool
+ Name="VCLinkerTool"
+ AdditionalDependencies="odbc32.lib odbccp32.lib xerces-c_2.lib"
+ OutputFile="Debug/SVGTBINENCODE.exe"
+ LinkIncremental="2"
+ SuppressStartupBanner="true"
+ AdditionalLibraryDirectories=".\Debug;\standalone\lib_win"
+ GenerateDebugInformation="true"
+ ProgramDatabaseFile=".\Debug/SVGTBINENCODE.pdb"
+ SubSystem="1"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
+ TargetMachine="1"
+ />
+ <Tool
+ Name="VCALinkTool"
+ />
+ <Tool
+ Name="VCManifestTool"
+ />
+ <Tool
+ Name="VCXDCMakeTool"
+ />
+ <Tool
+ Name="VCBscMakeTool"
+ SuppressStartupBanner="true"
+ OutputFile="Debug/SVGTBINENCODE.bsc"
+ />
+ <Tool
+ Name="VCFxCopTool"
+ />
+ <Tool
+ Name="VCAppVerifierTool"
+ />
+ <Tool
+ Name="VCPostBuildEventTool"
+ />
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+ >
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Buf.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Des16.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Des8.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Desc16.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Desc8.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxAffineTransform.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGc\GfxColor.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxEllipse2D.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxEllipseIteratorP.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxFlatteningPathIterator.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxFloatFixPt.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxGeneralPath.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxGeneralPathIteratorP.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGc\GfxGradientPaint.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxLine2D.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="4"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ WarningLevel="0"
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxLineIteratorP.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxPoint2D.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxRectangle2D.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxRectangleIteratorP.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxRectangularShape.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxRoundRectangle2D.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\GfxGeom\GfxRoundRectangleIteratorP.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\src\Gfxtrignometric.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Hbufc16.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Hbufc8.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\xmlReader\src\MyRXMLReader.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgCircleElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgCommandSection.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Nvg\src\NVGDefElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgElementFactory.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgEllipseElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgEncoder.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgGElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgHeaderSection.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgLinearGradientElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgLineElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgOffsetVector.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgPaintSection.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgPathElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgPathSection.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgPolygonElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgRadialGradientElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgRectElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgStopElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\src\NvgSvgElement.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Rfile.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Rpointerarraybase.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Sax2Print\SAX2PrintHandlers.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGAElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGAnimateElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGAnimateMotionElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGAnimateTransformElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGAnimationBase.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGAnimTimeController.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGAnimTimingParser.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\VGRasterizer\src\svgapi.c"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\src\SVGAttributeVerifier.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGAudioElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGCircleElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGClrCssValueImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGColor.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\src\SVGContentHandler.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGDiscardElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGDocumentImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGDOMImplementationImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGEllipseElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\src\Svgencoder.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\src\Svgencodermain.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ AssemblerOutput="2"
+ DebugInformationFormat="4"
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\src\SVGEngineImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\src\SVGErrorImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\src\SVGEvent.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGFitToViewBoxImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGFloatCssValueImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGFontElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGFontFaceElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGFontMap.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGGElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGGlyphElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGGradientElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SvgHkernelementimpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGImageElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGIntCssValueImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGLangSpaceImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGLinearGradientElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGLineElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\VGRasterizer\src\svgmath.c"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGMediaAnimationElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGMediaElementBase.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGMissingGlyphElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGMpathElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGPaintCssValueImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\VGRasterizer\src\svgpath.c"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGPathDataParser.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGPathElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGPointLexer.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGPolylineElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGPreserveAspectRatioImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGRadialGradientElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGRectElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGRelToAbsPath.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGSchemaData.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGSetElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGSolidColorElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGStopElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGStrCssValueImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGStringTokenizer.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGStyleElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\VGRasterizer\src\svgsubdivide.c"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\Svgsvgelementimpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\src\SVGTEncodeInterfaceImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGTestsImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGTextElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGTransformableImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGTransformListImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGUriReferenceImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGUseElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\src\SVGVectorCssValueImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\Xmldomimpl\src\SVGXmlElementImpl.cpp"
+ >
+ <FileConfiguration
+ Name="Release|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCLCompilerTool"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ />
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tbufbase16.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tbufbase8.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\TBufC.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tbufcbase16.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tbufcbase8.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tchar.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\TInt64.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tkeydesc8array.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tlex.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tptr16.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tptr8.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tptrc16.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Tptrc8.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\Trgb.cpp"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\utf.cpp"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Header Files"
+ Filter="h;hpp;hxx;hm;inl"
+ >
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxAffineTransform.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxColor.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxEllipse2D.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxEllipseIteratorP.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxFlatteningPathIterator.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxFloatFixPt.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxFloatFixPt.inl"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxGeneralPath.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxGeneralPathIteratorP.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxGradientPaint.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxLine2D.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxLineIteratorP.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxPaint.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxPathIterator.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxPoint2D.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxRectangle2D.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxRectangleIteratorP.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxRectangularShape.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxRoundRectangle2D.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxRoundRectangleIteratorP.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxShape.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\GfxStroke.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\inc\Gfxtrignometric.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgCircleElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgCommandSection.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Nvg\inc\NVGDefElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgElementFactory.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgEllipseElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgEncoder.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgGElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgHeaderSection.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgLinearGradientElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgLineElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgOffsetVector.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgPaintSection.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgPathElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgPathSection.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgPolygonElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgRadialGradientElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgRectElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgStopElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\internal\nvg\inc\NvgSvgElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Path\inc\svg2bintype.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\svg2bintype.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGAElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGAnimateElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGAnimateMotionElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGAnimateTransformElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGAnimationBase.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGAnimTimeController.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGAnimTimingParser.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\SVGAttributeVerifier.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGAudioElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGCircleElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGClrCssValueImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGColor.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\SVGContentHandler.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGCssValue.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\VGRasterizer\inc\svgdef.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDiscardElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDocumentImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOMImplementationImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGElementTimeControl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGEllipseElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\SVGEncoder.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\SVGEngineImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\SVGErrorImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\SVGEvent.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\SVGEventReceiver.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGFitToViewBox.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGFitToViewBoxImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGFloatCssValueImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGFontElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGFontFaceElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGFontMap.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGGElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGGlyphElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGGradientElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SvgHkernelementimpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGImageElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGIntCssValueImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGLangSpace.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGLangSpaceImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGLinearGradientElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGLineElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGLocatable.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\VGRasterizer\inc\svgmath.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGMediaAnimationElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGMediaElementBase.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGMissingGlyphElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGMpathElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGPaintCssValueImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGPathDataParser.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGPathElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGPointLexer.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGPolylineElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGPreserveAspectRatio.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGPreserveAspectRatioImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGRadialGradientElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Gfx2D\VGRasterizer\inc\svgrasterizer.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGRectElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGRelToAbsPath.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\SVGRequestObserver.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGSchemaData.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGSetElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGSolidColorElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SvgStopElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGStrCssValueImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGStringTokenizer.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGStyleElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGSvgElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\Svgtencodeinterface.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGEngine\inc\Svgtencodeinterfaceimpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGTests.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGTestsImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGTextElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGTransformable.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGTransformableImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGTransformList.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGTransformListImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGUriReference.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGUriReferenceImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGUseElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGVectorCssValueImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Xmldomimpl\inc\SVGXmlDocument.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Xmldomimpl\inc\SVGXmlDOMImplementation.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Xmldomimpl\inc\SVGXmlElement.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Xmldomimpl\inc\SVGXmlElementImpl.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGXmlElementOpt.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\SVGImpl\inc\SVGDOM\SVGZoomAndPan.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\symdef.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Path\inc\symdef.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Path\inc\symdef.inl"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\symdef.inl"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\symdefclass.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Path\inc\symdefclass.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\Path\inc\utf.h"
+ >
+ </File>
+ <File
+ RelativePath="..\Internal\testingsymdefcppdll\utf.h"
+ >
+ </File>
+ </Filter>
+ <Filter
+ Name="Resource Files"
+ Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+ >
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>
--- a/svgtencoder/svgtenc/standalone/group/SYMDEFCPPDLL.dsp Tue Jan 26 12:55:26 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/bld.inf Tue Jan 26 12:55:26 2010 +0200
+++ b/svgtencoder/svgtenc/standalone/group/bld.inf Fri Apr 16 16:02:07 2010 +0300
@@ -1,5 +1,5 @@
/*
-* Copyright (c) 2005 Nokia Corporation and/or its subsidiary(-ies).
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
@@ -11,22 +11,62 @@
*
* Contributors:
*
-* Description:
+* Description:
*
*/
-
+#include <platform_paths.hrh>
PRJ_PLATFORMS
-
-TOOLS
+//#ifdef SBSV2
+ TOOLS2
+//#else
+ TOOLS
+//#endif
PRJ_EXPORTS
-../lib/SVGTBinEncode.exe /epoc32/tools/SVGTBinEncode.exe
-../lib/xerces-c_2_6.dll /epoc32/tools/xerces-c_2_6.dll
+
+//#ifndef SBSV2
+ //START TOOLS
+ //#if defined(TOOLS)
+ ../binary/svgtbinencode.exe /epoc32/tools/svgtbinencode.exe
+ // For Windows abld Support "Link with dynamic xerces-c.2.8.0"
+ //../lib_win/xerces-c_2.lib /epoc32/release/tools/rel/xerces-c_2.lib
+ //../lib_win/xerces-c_2.lib /epoc32/release/tools/deb/xerces-c_2.lib
+ //#endif
+ //END
+//#endif
+
+#if HOSTPLATFORM_DIR==win32
+ #if defined(SBSV2) && defined(TOOLS2)
+ // For Windows Raptor Support "Link with static xerces-c.2.8.0 mingw"
+ ../lib_win/libxercesenc-c.a ../release/tools2/rel/libxercesenc-c.a
+ ../lib_win/libxercesenc-c.a ../release/tools2/deb/libxercesenc-c.a
+ #endif
+#endif
+
+#if HOSTPLATFORM_DIR!=win32
+ #if defined(SBSV2) && defined(TOOLS2)
+ // For Linux Raptor Support "Link with static xerces-c.2.8.0 mingw"
+ ../lib_linux/libxercesenc-c.a ../release/tools2/linux-i386/rel/libxercesenc-c.a
+ ../lib_linux/libxercesenc-c.a ../release/tools2/linux-i386/deb/libxercesenc-c.a
+ #endif
+#endif
+
+
PRJ_MMPFILES
-// Copy the SVGT Encoder Binary to target dir
-//gnumakefile copysvgtbinencode.mk
+#if defined(SBSV2) && defined(TOOLS2)
+
+ /*
+ * NOTICE! svgtbinencode is not compiled any more during usual build.
+ * It is just exported from ../binary directory.
+ * If you really want compile svgtbinencode from sources you need to
+ * uncomment below line, build this project using "sbs -c tools2 - b bld.inf" and copy
+ * /epoc32/tools/svgtbinencode.exe to ../binary directory and
+ * put the binary to version control.
+ */
+
+// svgtbinencoder.mmp
-// Enable Below Extension Makefile to compile and copy encoder to target dir
-//gnumakefile makefile
+#endif
+
--- a/svgtencoder/svgtenc/standalone/group/svgtbinencoder.mk Tue Jan 26 12:55:26 2010 +0200
+++ b/svgtencoder/svgtenc/standalone/group/svgtbinencoder.mk Fri Apr 16 16:02:07 2010 +0300
@@ -19,7 +19,7 @@
# EPOCROOT
#
PROGRAM=SVGTBinEncode.exe
-XERCES_DLL=xerces-c_2_6.dll
+XERCES_DLL=xerces-c_2_8.dll
#SYMDEFCPP_DLL=symdefcppdll.dll
PARENT_DIR=\sf\mw\uitools\svgtencoder\svgtenc\standalone\group
@@ -167,7 +167,7 @@
OBJECTS_C_REL=$(SOURCES_C:.c=.o)
-STLPORT_INC=C:\PROGRA~1\MICROS~3\VC98\Include\stlport
+#STLPORT_INC=C:\PROGRA~1\MICROS~3\VC98\Include\stlport
INCLUDES=/I"$(PARENT_DIR)" \
/I"$(PARENT_DIR)\inc" \
@@ -177,7 +177,7 @@
VPATH=$(PARENT_DIR)
CC=cl.exe
LINK=link.exe
-LINK32_FLAGS= ..\lib\xerces-c_2.lib
+LINK32_FLAGS= ..\lib_win\xerces-c_2.lib
DEFINES = /nologo /MT /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 "..\Internal\Path\inc" /I "..\Internal\xmlReader\inc" /I "..\Internal\Sax2Print" /I "..\Internal\Nvg\inc" /D ARM /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
CLFLAGS = /Od /nologo /GF /W4 /Fd -GX
@@ -216,13 +216,13 @@
# echo $(BUILD_DIR)
# echo $(CURDIR)
copy /y "$(PARENT_DIR)\$(PROGRAM).dbg" "\epoc32\RELEASE\tools\deb\$(PROGRAM)"
- copy /y "\sf\mw\uitools\svgtencoder\svgtenc\standalone\lib\$(XERCES_DLL)" "\epoc32\RELEASE\tools\deb\$(XERCES_DLL)"
+ copy /y "\sf\mw\uitools\svgtencoder\svgtenc\standalone\lib_win\$(XERCES_DLL)" "\epoc32\RELEASE\tools\deb\$(XERCES_DLL)"
REL_install: $(PROGRAM).rel
# echo $(PARENT_DIR)
# echo $(BUILD_DIR)
# echo $(CURDIR)
copy /y "$(PARENT_DIR)\$(PROGRAM).rel" "\epoc32\tools\$(PROGRAM)"
- copy /y "\sf\mw\uitools\svgtencoder\svgtenc\standalone\lib\$(XERCES_DLL)" "\epoc32\tools\$(XERCES_DLL)"
+ copy /y "\sf\mw\uitools\svgtencoder\svgtenc\standalone\lib_win\$(XERCES_DLL)" "\epoc32\tools\$(XERCES_DLL)"
DEB_CLEAN:
# echo $(CURDIR)
@chdir $(PARENT_DIR) && erase /f $(OBJECTS_CPP_DEB) 2>>nul
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/svgtencoder/svgtenc/standalone/group/svgtbinencoder.mmp Fri Apr 16 16:02:07 2010 +0300
@@ -0,0 +1,205 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* 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".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
+#include <platform_paths.hrh>
+
+TARGET svgtbinencode.exe
+TARGETTYPE exe
+
+// These options enable exception handling and set the warning level to 3 for command
+// line builds. STL code generates too many warnings at level 4, but is clean at
+// level 3. Also require RTTI.
+
+option MSVC /GX /W3 /GR
+option GCC -w -DXML_LIBRARY
+
+SOURCEPATH ../Internal/xmlReader/src
+SOURCE MyRXMLReader.cpp
+
+SOURCEPATH ../Internal/Sax2Print
+SOURCE SAX2PrintHandlers.cpp
+
+
+SOURCEPATH ../Internal/SVGEngine/src
+SOURCE SVGAttributeVerifier.cpp
+SOURCE SVGContentHandler.cpp
+SOURCE Svgencoder.cpp
+SOURCE SVGEncoderMain.cpp
+SOURCE SVGEngineImpl.cpp
+SOURCE SVGErrorImpl.cpp
+SOURCE SVGEvent.cpp
+SOURCE SVGTEncodeInterfaceImpl.cpp
+
+SOURCEPATH ../Internal/SVGImpl/src
+SOURCE SVGAElementImpl.cpp
+SOURCE SVGAnimateElementImpl.cpp
+SOURCE SVGAnimateMotionElementImpl.cpp
+SOURCE SVGAnimateTransformElementImpl.cpp
+SOURCE SVGAnimationBase.cpp
+SOURCE SVGAnimTimeController.cpp
+SOURCE SVGAnimTimingParser.cpp
+SOURCE SVGAudioElementImpl.cpp
+SOURCE SVGCircleElementImpl.cpp
+SOURCE SVGClrCssValueImpl.cpp
+SOURCE SVGColor.cpp
+SOURCE SVGDiscardElementImpl.cpp
+SOURCE SVGDocumentImpl.cpp
+SOURCE SVGDOMImplementationImpl.cpp
+SOURCE SVGElementImpl.cpp
+SOURCE SVGEllipseElementImpl.cpp
+SOURCE SVGFitToViewBoxImpl.cpp
+SOURCE SVGFloatCssValueImpl.cpp
+SOURCE SVGFontElementImpl.cpp
+SOURCE SVGFontFaceElementImpl.cpp
+SOURCE SVGFontMap.cpp
+SOURCE SVGGElementImpl.cpp
+SOURCE SVGGlyphElementImpl.cpp
+SOURCE SVGGradientElementImpl.cpp
+SOURCE SVGImageElementImpl.cpp
+SOURCE SVGIntCssValueImpl.cpp
+SOURCE SVGLangSpaceImpl.cpp
+SOURCE SVGLinearGradientElementImpl.cpp
+SOURCE SVGLineElementImpl.cpp
+SOURCE SVGMediaAnimationElementImpl.cpp
+SOURCE SVGMediaElementBase.cpp
+SOURCE SVGMissingGlyphElementImpl.cpp
+SOURCE SVGMpathElementImpl.cpp
+SOURCE SVGPaintCssValueImpl.cpp
+SOURCE SVGPathDataParser.cpp
+SOURCE SVGPathElementImpl.cpp
+SOURCE SVGPointLexer.cpp
+SOURCE SVGPolylineElementImpl.cpp
+SOURCE SVGPreserveAspectRatioImpl.cpp
+SOURCE SVGRadialGradientElementImpl.cpp
+SOURCE SVGRectElementImpl.cpp
+SOURCE SVGRelToAbsPath.cpp
+SOURCE SVGSchemaData.cpp
+SOURCE SVGSetElementImpl.cpp
+SOURCE SVGSolidColorElementImpl.cpp
+SOURCE SVGStopElementImpl.cpp
+SOURCE SVGStrCssValueImpl.cpp
+SOURCE SVGStringTokenizer.cpp
+SOURCE SVGStyleElementImpl.cpp
+SOURCE SVGTestsImpl.cpp
+SOURCE SVGTextElementImpl.cpp
+SOURCE SVGTransformListImpl.cpp
+SOURCE SVGTransformableImpl.cpp
+SOURCE SVGUriReferenceImpl.cpp
+SOURCE SVGUseElementImpl.cpp
+SOURCE SVGVectorCssValueImpl.cpp
+SOURCE SvgHkernelementimpl.cpp
+SOURCE Svgsvgelementimpl.cpp
+
+SOURCEPATH ../Internal/Xmldomimpl/src
+SOURCE SVGXmlElementImpl.cpp
+
+SOURCEPATH ../Internal/Gfx2D/src
+SOURCE GfxFloatFixPt.cpp
+SOURCE Gfxtrignometric.cpp
+
+SOURCEPATH ../Internal/Gfx2D/src/GfxGeom
+
+SOURCE GfxAffineTransform.cpp
+SOURCE GfxEllipse2D.cpp
+SOURCE GfxEllipseIteratorP.cpp
+SOURCE GfxFlatteningPathIterator.cpp
+SOURCE GfxGeneralPath.cpp
+SOURCE GfxGeneralPathIteratorP.cpp
+SOURCE GfxLine2D.cpp
+SOURCE GfxLineIteratorP.cpp
+SOURCE GfxPoint2D.cpp
+SOURCE GfxRectangle2D.cpp
+SOURCE GfxRectangleIteratorP.cpp
+SOURCE GfxRectangularShape.cpp
+SOURCE GfxRoundRectangle2D.cpp
+SOURCE GfxRoundRectangleIteratorP.cpp
+
+SOURCEPATH ../Internal/Gfx2D/src/GfxGc
+SOURCE GfxColor.cpp
+SOURCE GfxGradientPaint.cpp
+
+SOURCEPATH ../Internal/testingsymdefcppdll
+SOURCE Buf.cpp
+SOURCE Des16.cpp
+SOURCE Des8.cpp
+SOURCE Desc16.cpp
+SOURCE Desc8.cpp
+SOURCE Hbufc16.cpp
+SOURCE Hbufc8.cpp
+SOURCE Rfile.cpp
+SOURCE Rpointerarraybase.cpp
+SOURCE Tbufbase16.cpp
+SOURCE Tbufbase8.cpp
+SOURCE TBufC.cpp
+SOURCE Tbufcbase16.cpp
+SOURCE Tbufcbase8.cpp
+SOURCE Tchar.cpp
+SOURCE TInt64.cpp
+SOURCE Tkeydesc8array.cpp
+SOURCE Tlex.cpp
+SOURCE Tptr16.cpp
+SOURCE Tptr8.cpp
+SOURCE Tptrc16.cpp
+SOURCE Tptrc8.cpp
+SOURCE Trgb.cpp
+SOURCE utf.cpp
+
+SOURCEPATH ../Internal/Gfx2D/VGRasterizer/src
+SOURCE svgapi.c
+SOURCE svgmath.c
+SOURCE svgpath.c
+SOURCE svgsubdivide.c
+
+SOURCEPATH ../Internal/Nvg/src
+SOURCE NVGCircleElement.cpp
+SOURCE NvgCommandSection.cpp
+SOURCE NVGDefElement.cpp
+SOURCE NVGElement.cpp
+SOURCE NVGElementFactory.cpp
+SOURCE NVGEllipseElement.cpp
+SOURCE NVGEncoder.cpp
+SOURCE NVGGElement.cpp
+SOURCE NvgHeaderSection.cpp
+SOURCE NVGLinearGradientElement.cpp
+SOURCE NVGLineElement.cpp
+SOURCE NvgOffsetVector.cpp
+SOURCE NvgPaintSection.cpp
+SOURCE NVGPathElement.cpp
+SOURCE NvgPathSection.cpp
+SOURCE NVGPolygonElement.cpp
+SOURCE NVGRadialGradientElement.cpp
+SOURCE NVGRectElement.cpp
+SOURCE NVGStopElement.cpp
+SOURCE NVGSVGElement.cpp
+
+USERINCLUDE ../Internal/SVGEngine/inc
+USERINCLUDE ../Internal/Gfx2D/inc
+USERINCLUDE ../Internal/Gfx2D/VGRasterizer/inc
+USERINCLUDE ../Internal/Xmldomimpl/inc
+USERINCLUDE ../Internal/SVGImpl/inc/SVGDOM
+USERINCLUDE ../Internal/SVGImpl/inc
+USERINCLUDE ../Internal/xmlReader/inc
+USERINCLUDE ../Internal/Sax2Print
+USERINCLUDE ../Internal/Nvg/inc
+USERINCLUDE ../Internal/Path/inc
+
+//#ifndef SBSV2
+//START TOOLS
+// win32_library /epoc32/release/tools/rel/xerces-c_2.lib
+//END
+//#endif
+
+staticlibrary xercesenc-c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/svgtencoder/svgtenc/standalone/group/svgtbinencoderlinux.mk Fri Apr 16 16:02:07 2010 +0300
@@ -0,0 +1,251 @@
+#
+# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+# All rights reserved.
+# This component and the accompanying materials are made available
+# 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".
+#
+# Initial Contributors:
+# Nokia Corporation - initial contribution.
+#
+# Contributors:
+#
+# Description:
+#
+
+PROGRAM=/home/nokia/standalone/group/svgtbinencode.exe
+OBJS=/home/nokia/standalone/group
+PARENT_DIR=/home/nokia/standalone/group
+SOURCES_CPP=../Internal/Gfx2D/src/GfxFloatFixPt.cpp \
+../Internal/Gfx2D/src/Gfxtrignometric.cpp \
+../Internal/Gfx2D/src/GfxGc/GfxColor.cpp \
+../Internal/Gfx2D/src/GfxGc/GfxGradientPaint.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxAffineTransform.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxEllipse2D.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxEllipseIteratorP.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxFlatteningPathIterator.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxGeneralPath.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxGeneralPathIteratorP.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxLine2D.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxLineIteratorP.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxPoint2D.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxRectangle2D.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxRectangleIteratorP.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxRectangularShape.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxRoundRectangle2D.cpp \
+../Internal/Gfx2D/src/GfxGeom/GfxRoundRectangleIteratorP.cpp \
+../Internal/Nvg/src/NVGCircleElement.cpp \
+../Internal/Nvg/src/NvgCommandSection.cpp \
+../Internal/Nvg/src/NVGDefElement.cpp \
+../Internal/Nvg/src/NVGElement.cpp \
+../Internal/Nvg/src/NVGElementFactory.cpp \
+../Internal/Nvg/src/NVGEllipseElement.cpp \
+../Internal/Nvg/src/NVGEncoder.cpp \
+../Internal/Nvg/src/NVGGElement.cpp \
+../Internal/Nvg/src/NvgHeaderSection.cpp \
+../Internal/Nvg/src/NVGLinearGradientElement.cpp \
+../Internal/Nvg/src/NVGLineElement.cpp \
+../Internal/Nvg/src/NvgOffsetVector.cpp \
+../Internal/Nvg/src/NvgPaintSection.cpp \
+../Internal/Nvg/src/NVGPathElement.cpp \
+../Internal/Nvg/src/NvgPathSection.cpp \
+../Internal/Nvg/src/NVGPolygonElement.cpp \
+../Internal/Nvg/src/NVGRadialGradientElement.cpp \
+../Internal/Nvg/src/NVGRectElement.cpp \
+../Internal/Nvg/src/NVGStopElement.cpp \
+../Internal/Nvg/src/NVGSVGElement.cpp \
+../Internal/Sax2Print/SAX2PrintHandlers.cpp \
+../Internal/SVGEngine/src/SVGAttributeVerifier.cpp \
+../Internal/SVGEngine/src/SVGContentHandler.cpp \
+../Internal/SVGEngine/src/Svgencoder.cpp \
+../Internal/SVGEngine/src/SVGEncoderMain.cpp \
+../Internal/SVGEngine/src/SVGEngineImpl.cpp \
+../Internal/SVGEngine/src/SVGErrorImpl.cpp \
+../Internal/SVGEngine/src/SVGEvent.cpp \
+../Internal/SVGEngine/src/SVGTEncodeInterfaceImpl.cpp \
+../Internal/SVGImpl/src/SVGAElementImpl.cpp \
+../Internal/SVGImpl/src/SVGAnimateElementImpl.cpp \
+../Internal/SVGImpl/src/SVGAnimateMotionElementImpl.cpp \
+../Internal/SVGImpl/src/SVGAnimateTransformElementImpl.cpp \
+../Internal/SVGImpl/src/SVGAnimationBase.cpp \
+../Internal/SVGImpl/src/SVGAnimTimeController.cpp \
+../Internal/SVGImpl/src/SVGAnimTimingParser.cpp \
+../Internal/SVGImpl/src/SVGAudioElementImpl.cpp \
+../Internal/SVGImpl/src/SVGCircleElementImpl.cpp \
+../Internal/SVGImpl/src/SVGClrCssValueImpl.cpp \
+../Internal/SVGImpl/src/SVGColor.cpp \
+../Internal/SVGImpl/src/SVGDiscardElementImpl.cpp \
+../Internal/SVGImpl/src/SVGDocumentImpl.cpp \
+../Internal/SVGImpl/src/SVGDOMImplementationImpl.cpp \
+../Internal/SVGImpl/src/SVGElementImpl.cpp \
+../Internal/SVGImpl/src/SVGEllipseElementImpl.cpp \
+../Internal/SVGImpl/src/SVGFitToViewBoxImpl.cpp \
+../Internal/SVGImpl/src/SVGFloatCssValueImpl.cpp \
+../Internal/SVGImpl/src/SVGFontElementImpl.cpp \
+../Internal/SVGImpl/src/SVGFontFaceElementImpl.cpp \
+../Internal/SVGImpl/src/SVGFontMap.cpp \
+../Internal/SVGImpl/src/SVGGElementImpl.cpp \
+../Internal/SVGImpl/src/SVGGlyphElementImpl.cpp \
+../Internal/SVGImpl/src/SVGGradientElementImpl.cpp \
+../Internal/SVGImpl/src/SVGImageElementImpl.cpp \
+../Internal/SVGImpl/src/SVGIntCssValueImpl.cpp \
+../Internal/SVGImpl/src/SVGLangSpaceImpl.cpp \
+../Internal/SVGImpl/src/SVGLinearGradientElementImpl.cpp \
+../Internal/SVGImpl/src/SVGLineElementImpl.cpp \
+../Internal/SVGImpl/src/SVGMediaAnimationElementImpl.cpp \
+../Internal/SVGImpl/src/SVGMediaElementBase.cpp \
+../Internal/SVGImpl/src/SVGMissingGlyphElementImpl.cpp \
+../Internal/SVGImpl/src/SVGMpathElementImpl.cpp \
+../Internal/SVGImpl/src/SVGPaintCssValueImpl.cpp \
+../Internal/SVGImpl/src/SVGPathDataParser.cpp \
+../Internal/SVGImpl/src/SVGPathElementImpl.cpp \
+../Internal/SVGImpl/src/SVGPointLexer.cpp \
+../Internal/SVGImpl/src/SVGPolylineElementImpl.cpp \
+../Internal/SVGImpl/src/SVGPreserveAspectRatioImpl.cpp \
+../Internal/SVGImpl/src/SVGRadialGradientElementImpl.cpp \
+../Internal/SVGImpl/src/SVGRectElementImpl.cpp \
+../Internal/SVGImpl/src/SVGRelToAbsPath.cpp \
+../Internal/SVGImpl/src/SVGSchemaData.cpp \
+../Internal/SVGImpl/src/SVGSetElementImpl.cpp \
+../Internal/SVGImpl/src/SVGSolidColorElementImpl.cpp \
+../Internal/SVGImpl/src/SVGStopElementImpl.cpp \
+../Internal/SVGImpl/src/SVGStrCssValueImpl.cpp \
+../Internal/SVGImpl/src/SVGStringTokenizer.cpp \
+../Internal/SVGImpl/src/SVGStyleElementImpl.cpp \
+../Internal/SVGImpl/src/SVGTestsImpl.cpp \
+../Internal/SVGImpl/src/SVGTextElementImpl.cpp \
+../Internal/SVGImpl/src/SVGTransformListImpl.cpp \
+../Internal/SVGImpl/src/SVGTransformableImpl.cpp \
+../Internal/SVGImpl/src/SVGUriReferenceImpl.cpp \
+../Internal/SVGImpl/src/SVGUseElementImpl.cpp \
+../Internal/SVGImpl/src/SVGVectorCssValueImpl.cpp \
+../Internal/SVGImpl/src/SvgHkernelementimpl.cpp \
+../Internal/SVGImpl/src/Svgsvgelementimpl.cpp \
+../Internal/testingsymdefcppdll/Buf.cpp \
+../Internal/testingsymdefcppdll/Des16.cpp \
+../Internal/testingsymdefcppdll/Des8.cpp \
+../Internal/testingsymdefcppdll/Desc16.cpp \
+../Internal/testingsymdefcppdll/Desc8.cpp \
+../Internal/testingsymdefcppdll/Hbufc16.cpp \
+../Internal/testingsymdefcppdll/Hbufc8.cpp \
+../Internal/testingsymdefcppdll/Rfile.cpp \
+../Internal/testingsymdefcppdll/Rpointerarraybase.cpp \
+../Internal/testingsymdefcppdll/Tbufbase16.cpp \
+../Internal/testingsymdefcppdll/Tbufbase8.cpp \
+../Internal/testingsymdefcppdll/TBufC.cpp \
+../Internal/testingsymdefcppdll/Tbufcbase16.cpp \
+../Internal/testingsymdefcppdll/Tbufcbase8.cpp \
+../Internal/testingsymdefcppdll/Tchar.cpp \
+../Internal/testingsymdefcppdll/TInt64.cpp \
+../Internal/testingsymdefcppdll/Tkeydesc8array.cpp \
+../Internal/testingsymdefcppdll/Tlex.cpp \
+../Internal/testingsymdefcppdll/Tptr16.cpp \
+../Internal/testingsymdefcppdll/Tptr8.cpp \
+../Internal/testingsymdefcppdll/Tptrc16.cpp \
+../Internal/testingsymdefcppdll/Tptrc8.cpp \
+../Internal/testingsymdefcppdll/Trgb.cpp \
+../Internal/testingsymdefcppdll/utf.cpp \
+../Internal/Xmldomimpl/src/SVGXmlElementImpl.cpp \
+../Internal/xmlReader/src/MyRXMLReader.cpp
+
+SOURCES_C=../Internal/Gfx2D/VGRasterizer/src/svgapi.c \
+../Internal/Gfx2D/VGRasterizer/src/svgpath.c \
+../Internal/Gfx2D/VGRasterizer/src/svgmath.c \
+../Internal/Gfx2D/VGRasterizer/src/svgsubdivide.c
+
+
+OBJECTS_CPP_DEB=$(SOURCES_CPP:.cpp=.dbg.o)
+OBJECTS_C_DEB=$(SOURCES_C:.c=.dbg.o)
+OBJECTS_CPP_REL=$(SOURCES_CPP:.cpp=.o)
+OBJECTS_C_REL=$(SOURCES_C:.c=.o)
+
+STLPORT_INC=/usr/local/lib
+INCLUDES=-I "$(PARENT_DIR)" -I "$(PARENT_DIR)/inc" -I usr/include
+ # /I"$(EPOCROOT)epoc32/include" /
+ # /I"$(STLPORT_INC)"
+
+VPATH=$(PARENT_DIR)
+CC=g++ -g
+LINK=ld
+LINK32_FLAGS=/home/nokia/standalone/lib_linux/libxercesenc-c.so.28
+DEFINES =-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 "../Internal/xmlReader/inc" \
+-I "../Internal/Sax2Print" \
+-I "../Internal/Nvg/inc" \
+-I "../Internal/Path/inc" -D ARM -D NDEBUG -D _CONSOLE -D _MBCS
+#/YX /FD /c
+#CLFLAGS = /Od /nologo /GF -W4 /Fd -GX
+CLFLAGS =-ansi -umacro -fms-extensions -w -fshort-wchar -g3
+#/nologo /MT /GX
+$(PROGRAM) : $(OBJECTS_CPP_REL) $(OBJECTS_C_REL)
+# echo $(SOURCES_CPP)
+# echo $(SOURCES_C)
+ g++ -g3 -lstdc++ -o $(PROGRAM) $(OBJECTS_CPP_REL) $(OBJECTS_C_REL) $(LINK32_FLAGS)
+
+#DEB : $(OBJECTS_CPP_DEB)
+ echo "DEB build Called"
+# echo $(SOURCES_CPP)
+# echo $(SOURCES_C)
+# $(LINK) /OUT:"$(PROGRAM).dbg" $(OBJECTS_CPP_DEB) $(LINK32_FLAGS)
+
+
+REL : $(OBJECTS_CPP_REL) $(OBJECTS_C_REL)
+ echo "REL build Called"
+# echo $(SOURCES_CPP)
+# echo $(SOURCES_C)
+ $(LINK) /OUT:"$(PROGRAM).rel" $(OBJECTS_CPP_REL) $(OBJECTS_C_REL) $(LINK32_FLAGS)
+
+%.o : %.cpp
+ $(CC) $(DEFINES) $(CLFLAGS) $(INCLUDES) -o "$@" -c $<
+
+%.dbg.o : %.cpp
+ $(CC) $(DEFINES) $(CLFLAGS) $(INCLUDES) -o "$@" -c $<
+
+%.o : %.c
+ $(CC) $(DEFINES) $(CLFLAGS) $(INCLUDES) -o "$@" -c $<
+
+%.dbg.o : %.c
+ $(CC) $(DEFINES) $(CLFLAGS) $(INCLUDES) -o "$@" -c $<
+
+#EB_install: $(PROGRAM).dbg
+# echo $(PARENT_DIR)
+# echo $(BUILD_DIR)
+# echo $(CURDIR)
+# copy /y "$(PARENT_DIR)/$(PROGRAM).dbg" "/epoc32/RELEASE/tools/deb/$(PROGRAM)"
+# copy /y "/S60/mw/graphics/SVGTopt/SVGTEncoder/standalone/lib/$(OBJS)" "/epoc32/RELEASE/tools/deb/$(OBJS)"
+#REL_install: $(PROGRAM).rel
+# echo $(PARENT_DIR)
+# echo $(BUILD_DIR)
+# echo $(CURDIR)
+# copy /y "$(PARENT_DIR)/$(PROGRAM).rel" "/epoc32/tools/$(PROGRAM)"
+# copy /y "/S60/mw/graphics/SVGTopt/SVGTEncoder/standalone/lib/$(OBJS)" "/epoc32/tools/$(OBJS)"
+#DEB_CLEAN:
+# echo $(CURDIR)
+# @chdir $(PARENT_DIR) && erase /f $(OBJECTS_CPP_DEB) 2>>nul
+# @chdir $(PARENT_DIR) && erase /f $(OBJECTS_C_DEB) 2>>nul
+# @chdir $(PARENT_DIR) && erase /f $(PROGRAM).dbg 2>>nul
+# @erase /f "/epoc32/RELEASE/tools/deb/$(PROGRAM)" 2>>nul
+# @erase /f "/epoc32/RELEASE/tools/deb/$(OBJS)" 2>>nul
+
+#REL_clean:
+# echo $(CURDIR)
+# @chdir $(PARENT_DIR) && erase /f $(OBJECTS_CPP_REL) 2>>nul
+# @chdir $(PARENT_DIR) && erase /f $(OBJECTS_C_REL) 2>>nul
+# @chdir $(PARENT_DIR) && erase /f $(PROGRAM).rel 2>>nul
+# @erase /f "/epoc32/tools/$(PROGRAM)" 2>>nul
+# @erase /f "/epoc32/tools/$(OBJS)" 2>>nul
+
+
+clean : FORCE
+ cd ../; \
+ find -name *.o -type f -exec rm {} \;
+
+FORCE:
+
+
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
Binary file svgtencoder/svgtenc/standalone/lib_linux/libxercesenc-c.a has changed
Binary file svgtencoder/svgtenc/standalone/lib_linux/libxercesenc-c.so.28 has changed
Binary file svgtencoder/svgtenc/standalone/lib_win/libxercesenc-c.a has changed
Binary file svgtencoder/svgtenc/standalone/lib_win/xerces-c_2.lib has changed
Binary file svgtencoder/svgtenc/standalone/lib_win/xerces-c_2_8.dll has changed
--- a/uitools_plat/cdl_api/inc/CdlCompilerToolkit/CdlCompat.h Tue Jan 26 12:55:26 2010 +0200
+++ b/uitools_plat/cdl_api/inc/CdlCompilerToolkit/CdlCompat.h Fri Apr 16 16:02:07 2010 +0300
@@ -1,3 +1,19 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* 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".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+*/
// Cdlcompat.h
#ifndef CDLCOMPAT_H