[Sumover-dev] [svn commit] r4481 - in vic/branches/mpeg4: codec render/mkbv tcl tcl/tcl2cpp video

sumover-dev at cs.ucl.ac.uk sumover-dev at cs.ucl.ac.uk
Wed Jul 15 11:49:30 BST 2009


Author: douglask
Date: Wed Jul 15 11:49:02 2009
New Revision: 4481

Added:
   vic/branches/mpeg4/tcl/ui-entry.tcl
Modified:
   vic/branches/mpeg4/Tcl.cpp
   vic/branches/mpeg4/codec/ffmpeg_codec.cpp
   vic/branches/mpeg4/render/mkbv/mkbv.2008.vcproj
   vic/branches/mpeg4/tcl/tcl2cpp/tcl2cpp.2008.vcproj
   vic/branches/mpeg4/vic.2008.sln
   vic/branches/mpeg4/vic.2008.vcproj
   vic/branches/mpeg4/video/grabber-win32.cpp
   vic/branches/mpeg4/video/grabber-win32DS.cpp

Log:
Initial check-in of ActiveTcl 8.5 modifications

Modified: vic/branches/mpeg4/Tcl.cpp
==============================================================================
--- vic/branches/mpeg4/Tcl.cpp	(original)
+++ vic/branches/mpeg4/Tcl.cpp	Wed Jul 15 11:49:02 2009
@@ -88,7 +88,7 @@
 	if (st != TCL_OK) {
 		int n = strlen(application_) + strlen(s);
 		char* wrk = new char[n + 80];
-		sprintf(wrk, "tkerror \"%s: %s\"", application_, s);
+		sprintf(wrk, "bgerror \"%s: %s\"", application_, s);
 		Tcl_GlobalEval(tcl_, wrk);
 		delete[] wrk; //SV-XXX: Debian
 		//exit(1);

Modified: vic/branches/mpeg4/codec/ffmpeg_codec.cpp
==============================================================================
--- vic/branches/mpeg4/codec/ffmpeg_codec.cpp	(original)
+++ vic/branches/mpeg4/codec/ffmpeg_codec.cpp	Wed Jul 15 11:49:02 2009
@@ -1,305 +1,305 @@
-#include <assert.h>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-#include <iostream>
-#include <math.h>
-#include "debug.h"
-#include "ffmpeg_codec.h"
-/*#include "dsputil.h"
-#include "avcodec.h"
-#include "mpegvideo.h"
-#include "h264.h"*/
-
-#ifndef _UNISTD_H
-extern "C" int getpid();
-#endif
-
-FFMpegCodec::FFMpegCodec()
-{
-    state = false;
-    quality = 31;
-    //rtp_callback = NULL;
-    enable_hq_encoding = false;
-}
-
-FFMpegCodec::~FFMpegCodec()
-{
-    release();
-}
-
-
-void FFMpegCodec::init(bool encode, CodecID id, PixelFormat fmt)
-{
-    encoding = encode;
-    codecid = id;
-    pixelfmt = fmt;
-    picture_buf = NULL;
-    state = false;
-
-    avcodec_init();
-    avcodec_register_all();
-}
-
-void FFMpegCodec::restart()
-{
-    avcodec_init();
-
-    if (encoding) {
-	init_encoder(width, height, bit_rate, frame_rate, iframe_gap);
-    }
-    else {
-	init_decoder();
-    }
-}
-
-void FFMpegCodec::init_encoder(int width_, int height_,
-			       int bit_rate_, int frame_rate_,
-			       int iframe_gap_)
-{
-    if (state) {
-	release();
-    }
-    width = width_;
-    height = height_;
-    bit_rate = bit_rate_;
-    frame_rate = frame_rate_;
-    iframe_gap = iframe_gap_;
-
-    c = avcodec_alloc_context();
-    c->pix_fmt = pixelfmt;
-    picture = avcodec_alloc_frame();
-
-    codec = avcodec_find_encoder(codecid);
-    if (!codec) {
-	//printf("codec %d not found\n", codecid);
-	std::cout << "codec not found\n";
-	exit(1);
-    }
-
-    // assign rtp callback function
-    c->rtp_callback = rtp_callback;
-    //c->rtp_callback = NULL;
-    // put sample parameters */
-    c->bit_rate = bit_rate;
-    //c->bit_rate_tolerance = 2000*1000;
-    // resolution must be a multiple of two 
-    c->width = width;
-    c->height = height;
-
-    // frames per second */
-    // OLD FFMPEG ver
-    //c->frame_rate = frame_rate * FRAME_RATE_BASE; 
-    // New FFMPEG ver
-    c->time_base.den = frame_rate;
-    c->time_base.num = 1;
-
-    // emit one intra frame every ten frames 
-    c->gop_size = iframe_gap;
-    //c->flags |= CODEC_FLAG_EMU_EDGE;
-    //c->flags |= CODEC_FLAG_LOW_DELAY;
-    //c->flags |= CODEC_FLAG_PART;
-    //c->flags |= CODEC_FLAG_ALT_SCAN;       
-    //c->flags |= CODEC_FLAG_PSNR;
-    //c->flags |= CODEC_FLAG_AC_PRED;
-
-    // in loop filter for low bitrate compression
-    c->flags |= CODEC_FLAG_LOOP_FILTER;
-
-
-    if (enable_hq_encoding) {
-	c->flags |= CODEC_FLAG_QPEL;
-	//c->flags |= CODEC_FLAG_GMC;
-	c->flags |= CODEC_FLAG_AC_PRED;
-	c->flags |= CODEC_FLAG_4MV;
-	//c->flags |= CODEC_FLAG_QP_RD;      
-	//c->mb_decision = FF_MB_DECISION_RD;                     
-    }
-
-    c->me_method = ME_EPZS;
-    c->rtp_payload_size = 1024;
-
-    /* open it */
-    if (avcodec_open(c, codec) < 0) {
-	//fprintf(stderr, "could not open codec\n");
-	std::cout << "could not open codec\n";
-	exit(1);
-    }
-
-    /* size for YUV 420 */
-    frame_size = width * height;
-    picture_buf = new UCHAR[(frame_size * 3) >> 1];
-    picture->data[0] = picture_buf;
-    picture->data[1] = picture->data[0] + frame_size;
-    picture->data[2] = picture->data[1] + (frame_size >> 2);
-    picture->linesize[0] = width;
-    picture->linesize[1] = width >> 1;
-    picture->linesize[2] = width >> 1;
-
-    bitstream = new UCHAR[MAX_CODED_SIZE];
-    state = true;
-    keyFrame = false;
-}
-
-
-void FFMpegCodec::init_decoder()
-{
-    if (state) {
-	release();
-    }
-    width = height = 0;
-	frame_size = 0;
-
-    picture = avcodec_alloc_frame();
-    c = avcodec_alloc_context();
-    c->flags |= CODEC_FLAG_EMU_EDGE | CODEC_FLAG_PART;
-    // c->flags |= CODEC_FLAG_ALT_SCAN;  
-
-    codec = avcodec_find_decoder(codecid);
-    if (!codec) {
-	//fprintf(stderr, "codec not found\n");
-	exit(1);
-    }
-    /* open it */
-    if (avcodec_open(c, codec) < 0) {
-	//fprintf(stderr, "could not open codec\n");
-	exit(1);
-    }
-
-    state = true;
-
-    //fptr = (void*)fopen("ffmpeg.yuv", "w");
-}
-
-void FFMpegCodec::release()
-{
-    if (state) {
-	avcodec_close(c);
-	av_free(c);
-	av_free(picture);
-	c = NULL;
-	picture = NULL;
-	codec = NULL;
-
-	if (encoding) {
-	    delete picture_buf;
-	    delete bitstream;
-	    picture_buf = bitstream = NULL;
-	}
-	state = false;
-    }
-}
-
-// return: the coding length
-UCHAR *FFMpegCodec::encode(const UCHAR * vf, int &len)
-{
-    memcpy(picture->data[0], vf, frame_size);
-    memcpy(picture->data[1], (vf + frame_size), frame_size / 4);
-    memcpy(picture->data[2], (vf + frame_size * 5 / 4), frame_size / 4);
-
-    len = avcodec_encode_video(c, bitstream, MAX_CODED_SIZE, picture);
-    if (c->coded_frame && c->coded_frame->key_frame) {
-	keyFrame = true;
-    }
-    else {
-	keyFrame = false;
-    }
-    assert(len < MAX_CODED_SIZE);
-    pict_type = c->coded_frame->pict_type;
-
-    return bitstream;
-}
-
-bool FFMpegCodec::isKeyFrame()
-{
-    return keyFrame;
-}
-
-double FFMpegCodec::get_PSNR()
-{
-#ifndef WIN32
-    double mse1 = c->error[0] / float (frame_size);
-    c->error[0] = 0;
-
-    return 10 * log10(47961 / mse1);
-#else
-    c->error[0] = 0;
-    return 0.0;
-#endif
-}
-
-// return:  videoframe size
-//         -1 indicates decoding failure
-int FFMpegCodec::decode(UCHAR * codedstream, int size, UCHAR * vf)
-{
-    int got_picture;
-    int len;
-
-    len = avcodec_decode_video(c, picture, &got_picture, codedstream, size);
-
-    if (!got_picture || len < 0) {
-		return -1;
-    }
-    
-    if (state) {
-      //H264Context *h = c->priv_data;
-      //printf("h->sps.ref_frame_count: %d",h->sps.ref_frame_count);
-    }
-	if (c->width != width || c->height != height) {
-		debug_msg("ffmpegcodec: resize from %dx%d (framesize:%d) to %dx%d, (size: %d) got_picture: %d, len: %d\n", width, height, 
-			frame_size, c->width, c->height, size, got_picture, len);
-		resize(c->width, c->height);
-    }
-/*
-    if(avpicture_deinterlace((AVPicture *)picture, (AVPicture *)picture,
-                                    c->pix_fmt, c->width, c->height) < 0) {
-          printf("deinterlace error\n");
-    }      	    
-*/
-    pict_type = picture->pict_type;
-    memcpy(vf, picture->data[0], frame_size);
-    memcpy(vf + frame_size, picture->data[1], frame_size / 4);
-    memcpy(vf + frame_size * 5 / 4, picture->data[2], frame_size / 4);
-
-    //fwrite(picture->data[0], frame_size, 1, (FILE*)fptr);
-    //fwrite(picture->data[1], frame_size/4, 1, (FILE*)fptr);
-    //fwrite(picture->data[2], frame_size/4, 1, (FILE*)fptr);
-
-    return len;
-}
-
-void FFMpegCodec::resize(int w, int h)
-{
-    width = w;
-    height = h;
-    frame_size = width * height;
-    assert(frame_size * 3 / 2 < MAX_FRAME_SIZE);
-}
-
-void FFMpegCodec::set_gop(int gop_)
-{
-/*
-    iframe_gap = gop_;
-
-    if (state) {
-	MpegEncContext *s = (MpegEncContext *) c->priv_data;
-	s->gop_size = gop_;
-	if (s->gop_size <= 1) {
-	    s->intra_only = 1;
-	    s->gop_size = 12;
-	}
-	else {
-	    s->intra_only = 0;
-	}
-    }
-*/
-}
-
-void FFMpegCodec::set_max_quantizer(int q)
-{
-    quality = q;
-    if (state) {
-//    MpegEncContext *s = (MpegEncContext*)c->priv_data;
-//    s->qmax = c->qmax = c->mb_qmax = q;       
-    }
-}
+#include <assert.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <iostream>
+#include <math.h>
+#include "debug.h"
+#include "ffmpeg_codec.h"
+/*#include "dsputil.h"
+#include "avcodec.h"
+#include "mpegvideo.h"
+#include "h264.h"*/
+
+#ifdef WIN32
+#include <process.h>
+#endif
+
+FFMpegCodec::FFMpegCodec()
+{
+    state = false;
+    quality = 31;
+    //rtp_callback = NULL;
+    enable_hq_encoding = false;
+}
+
+FFMpegCodec::~FFMpegCodec()
+{
+    release();
+}
+
+
+void FFMpegCodec::init(bool encode, CodecID id, PixelFormat fmt)
+{
+    encoding = encode;
+    codecid = id;
+    pixelfmt = fmt;
+    picture_buf = NULL;
+    state = false;
+
+    avcodec_init();
+    avcodec_register_all();
+}
+
+void FFMpegCodec::restart()
+{
+    avcodec_init();
+
+    if (encoding) {
+	init_encoder(width, height, bit_rate, frame_rate, iframe_gap);
+    }
+    else {
+	init_decoder();
+    }
+}
+
+void FFMpegCodec::init_encoder(int width_, int height_,
+			       int bit_rate_, int frame_rate_,
+			       int iframe_gap_)
+{
+    if (state) {
+	release();
+    }
+    width = width_;
+    height = height_;
+    bit_rate = bit_rate_;
+    frame_rate = frame_rate_;
+    iframe_gap = iframe_gap_;
+
+    c = avcodec_alloc_context();
+    c->pix_fmt = pixelfmt;
+    picture = avcodec_alloc_frame();
+
+    codec = avcodec_find_encoder(codecid);
+    if (!codec) {
+	//printf("codec %d not found\n", codecid);
+	std::cout << "codec not found\n";
+	exit(1);
+    }
+
+    // assign rtp callback function
+    c->rtp_callback = rtp_callback;
+    //c->rtp_callback = NULL;
+    // put sample parameters */
+    c->bit_rate = bit_rate;
+    //c->bit_rate_tolerance = 2000*1000;
+    // resolution must be a multiple of two 
+    c->width = width;
+    c->height = height;
+
+    // frames per second */
+    // OLD FFMPEG ver
+    //c->frame_rate = frame_rate * FRAME_RATE_BASE; 
+    // New FFMPEG ver
+    c->time_base.den = frame_rate;
+    c->time_base.num = 1;
+
+    // emit one intra frame every ten frames 
+    c->gop_size = iframe_gap;
+    //c->flags |= CODEC_FLAG_EMU_EDGE;
+    //c->flags |= CODEC_FLAG_LOW_DELAY;
+    //c->flags |= CODEC_FLAG_PART;
+    //c->flags |= CODEC_FLAG_ALT_SCAN;       
+    //c->flags |= CODEC_FLAG_PSNR;
+    //c->flags |= CODEC_FLAG_AC_PRED;
+
+    // in loop filter for low bitrate compression
+    c->flags |= CODEC_FLAG_LOOP_FILTER;
+
+
+    if (enable_hq_encoding) {
+	c->flags |= CODEC_FLAG_QPEL;
+	//c->flags |= CODEC_FLAG_GMC;
+	c->flags |= CODEC_FLAG_AC_PRED;
+	c->flags |= CODEC_FLAG_4MV;
+	//c->flags |= CODEC_FLAG_QP_RD;      
+	//c->mb_decision = FF_MB_DECISION_RD;                     
+    }
+
+    c->me_method = ME_EPZS;
+    c->rtp_payload_size = 1024;
+
+    /* open it */
+    if (avcodec_open(c, codec) < 0) {
+	//fprintf(stderr, "could not open codec\n");
+	std::cout << "could not open codec\n";
+	exit(1);
+    }
+
+    /* size for YUV 420 */
+    frame_size = width * height;
+    picture_buf = new UCHAR[(frame_size * 3) >> 1];
+    picture->data[0] = picture_buf;
+    picture->data[1] = picture->data[0] + frame_size;
+    picture->data[2] = picture->data[1] + (frame_size >> 2);
+    picture->linesize[0] = width;
+    picture->linesize[1] = width >> 1;
+    picture->linesize[2] = width >> 1;
+
+    bitstream = new UCHAR[MAX_CODED_SIZE];
+    state = true;
+    keyFrame = false;
+}
+
+
+void FFMpegCodec::init_decoder()
+{
+    if (state) {
+	release();
+    }
+    width = height = 0;
+	frame_size = 0;
+
+    picture = avcodec_alloc_frame();
+    c = avcodec_alloc_context();
+    c->flags |= CODEC_FLAG_EMU_EDGE | CODEC_FLAG_PART;
+    // c->flags |= CODEC_FLAG_ALT_SCAN;  
+
+    codec = avcodec_find_decoder(codecid);
+    if (!codec) {
+	//fprintf(stderr, "codec not found\n");
+	exit(1);
+    }
+    /* open it */
+    if (avcodec_open(c, codec) < 0) {
+	//fprintf(stderr, "could not open codec\n");
+	exit(1);
+    }
+
+    state = true;
+
+    //fptr = (void*)fopen("ffmpeg.yuv", "w");
+}
+
+void FFMpegCodec::release()
+{
+    if (state) {
+	avcodec_close(c);
+	av_free(c);
+	av_free(picture);
+	c = NULL;
+	picture = NULL;
+	codec = NULL;
+
+	if (encoding) {
+	    delete picture_buf;
+	    delete bitstream;
+	    picture_buf = bitstream = NULL;
+	}
+	state = false;
+    }
+}
+
+// return: the coding length
+UCHAR *FFMpegCodec::encode(const UCHAR * vf, int &len)
+{
+    memcpy(picture->data[0], vf, frame_size);
+    memcpy(picture->data[1], (vf + frame_size), frame_size / 4);
+    memcpy(picture->data[2], (vf + frame_size * 5 / 4), frame_size / 4);
+
+    len = avcodec_encode_video(c, bitstream, MAX_CODED_SIZE, picture);
+    if (c->coded_frame && c->coded_frame->key_frame) {
+	keyFrame = true;
+    }
+    else {
+	keyFrame = false;
+    }
+    assert(len < MAX_CODED_SIZE);
+    pict_type = c->coded_frame->pict_type;
+
+    return bitstream;
+}
+
+bool FFMpegCodec::isKeyFrame()
+{
+    return keyFrame;
+}
+
+double FFMpegCodec::get_PSNR()
+{
+#ifndef WIN32
+    double mse1 = c->error[0] / float (frame_size);
+    c->error[0] = 0;
+
+    return 10 * log10(47961 / mse1);
+#else
+    c->error[0] = 0;
+    return 0.0;
+#endif
+}
+
+// return:  videoframe size
+//         -1 indicates decoding failure
+int FFMpegCodec::decode(UCHAR * codedstream, int size, UCHAR * vf)
+{
+    int got_picture;
+    int len;
+
+    len = avcodec_decode_video(c, picture, &got_picture, codedstream, size);
+
+    if (!got_picture || len < 0) {
+		return -1;
+    }
+    
+    if (state) {
+      //H264Context *h = c->priv_data;
+      //printf("h->sps.ref_frame_count: %d",h->sps.ref_frame_count);
+    }
+	if (c->width != width || c->height != height) {
+		debug_msg("ffmpegcodec: resize from %dx%d (framesize:%d) to %dx%d, (size: %d) got_picture: %d, len: %d\n", width, height, 
+			frame_size, c->width, c->height, size, got_picture, len);
+		resize(c->width, c->height);
+    }
+/*
+    if(avpicture_deinterlace((AVPicture *)picture, (AVPicture *)picture,
+                                    c->pix_fmt, c->width, c->height) < 0) {
+          printf("deinterlace error\n");
+    }      	    
+*/
+    pict_type = picture->pict_type;
+    memcpy(vf, picture->data[0], frame_size);
+    memcpy(vf + frame_size, picture->data[1], frame_size / 4);
+    memcpy(vf + frame_size * 5 / 4, picture->data[2], frame_size / 4);
+
+    //fwrite(picture->data[0], frame_size, 1, (FILE*)fptr);
+    //fwrite(picture->data[1], frame_size/4, 1, (FILE*)fptr);
+    //fwrite(picture->data[2], frame_size/4, 1, (FILE*)fptr);
+
+    return len;
+}
+
+void FFMpegCodec::resize(int w, int h)
+{
+    width = w;
+    height = h;
+    frame_size = width * height;
+    assert(frame_size * 3 / 2 < MAX_FRAME_SIZE);
+}
+
+void FFMpegCodec::set_gop(int gop_)
+{
+/*
+    iframe_gap = gop_;
+
+    if (state) {
+	MpegEncContext *s = (MpegEncContext *) c->priv_data;
+	s->gop_size = gop_;
+	if (s->gop_size <= 1) {
+	    s->intra_only = 1;
+	    s->gop_size = 12;
+	}
+	else {
+	    s->intra_only = 0;
+	}
+    }
+*/
+}
+
+void FFMpegCodec::set_max_quantizer(int q)
+{
+    quality = q;
+    if (state) {
+//    MpegEncContext *s = (MpegEncContext*)c->priv_data;
+//    s->qmax = c->qmax = c->mb_qmax = q;       
+    }
+}

Modified: vic/branches/mpeg4/render/mkbv/mkbv.2008.vcproj
==============================================================================
--- vic/branches/mpeg4/render/mkbv/mkbv.2008.vcproj	(original)
+++ vic/branches/mpeg4/render/mkbv/mkbv.2008.vcproj	Wed Jul 15 11:49:02 2009
@@ -3,8 +3,10 @@
 	ProjectType="Visual C++"
 	Version="9.00"
 	Name="mkbv"
-	ProjectGUID="{411F54B7-C71F-4E0F-A8C6-EE79F003E628}"
-	TargetFrameworkVersion="131072"
+	ProjectGUID="{33888FB9-7569-44CF-B055-6FA11DA67E53}"
+	RootNamespace="mkbv"
+	Keyword="Win32Proj"
+	TargetFrameworkVersion="196613"
 	>
 	<Platforms>
 		<Platform
@@ -16,13 +18,10 @@
 	<Configurations>
 		<Configuration
 			Name="Debug|Win32"
-			OutputDirectory=".\Debug"
-			IntermediateDirectory=".\Debug"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+			IntermediateDirectory="$(ConfigurationName)"
 			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
+			CharacterSet="1"
 			>
 			<Tool
 				Name="VCPreBuildEventTool"
@@ -38,53 +37,34 @@
 			/>
 			<Tool
 				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Debug/mkbv.tlb"
 			/>
 			<Tool
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				AdditionalIncludeDirectories="..\..\,..\..\..\common\src"
-				PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
-				BasicRuntimeChecks="0"
-				RuntimeLibrary="1"
+				AdditionalIncludeDirectories="&quot;$(SolutionDir)&quot;;&quot;$(SolutionDir)\..\common\src&quot;"
+				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+				MinimalRebuild="true"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
 				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				AssemblerListingLocation=".\Debug/"
-				ObjectFile=".\Debug/"
-				ProgramDataBaseFileName=".\Debug/"
 				WarningLevel="3"
-				SuppressStartupBanner="true"
 				DebugInformationFormat="4"
-				CompileAs="0"
 			/>
 			<Tool
 				Name="VCManagedResourceCompilerTool"
 			/>
 			<Tool
 				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
 			/>
 			<Tool
 				Name="VCPreLinkEventTool"
 			/>
 			<Tool
 				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="mkbv.exe"
 				LinkIncremental="2"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\..\"
 				GenerateDebugInformation="true"
-				ProgramDatabaseFile=".\Debug/mkbv.pdb"
 				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
+				TargetMachine="1"
 			/>
 			<Tool
 				Name="VCALinkTool"
@@ -110,105 +90,11 @@
 		</Configuration>
 		<Configuration
 			Name="Release|Win32"
-			OutputDirectory=".\Release"
-			IntermediateDirectory=".\Release"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Release/mkbv.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\,..\..\..\common\src"
-				PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="mkbv.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				ProgramDatabaseFile=".\Release/mkbv.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Release GPL|Win32"
-			OutputDirectory="$(ConfigurationName)"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="$(ConfigurationName)"
 			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
+			CharacterSet="1"
+			WholeProgramOptimization="1"
 			>
 			<Tool
 				Name="VCPreBuildEventTool"
@@ -224,423 +110,36 @@
 			/>
 			<Tool
 				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Release/mkbv.tlb"
 			/>
 			<Tool
 				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\,..\..\..\common\src"
-				PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-				StringPooling="true"
-				RuntimeLibrary="0"
+				Optimization="2"
+				EnableIntrinsicFunctions="true"
+				AdditionalIncludeDirectories="&quot;$(SolutionDir)&quot;;&quot;$(SolutionDir)\..\common\src&quot;"
+				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+				RuntimeLibrary="2"
 				EnableFunctionLevelLinking="true"
 				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
 				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
+				DebugInformationFormat="3"
 			/>
 			<Tool
 				Name="VCManagedResourceCompilerTool"
 			/>
 			<Tool
 				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
 			/>
 			<Tool
 				Name="VCPreLinkEventTool"
 			/>
 			<Tool
 				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="mkbv.exe"
 				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				ProgramDatabaseFile=".\Release/mkbv.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Debug tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Debug/mkbv.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				AdditionalIncludeDirectories="..\..\,..\..\..\common\src"
-				PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
-				BasicRuntimeChecks="0"
-				RuntimeLibrary="1"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				AssemblerListingLocation=".\Debug/"
-				ObjectFile=".\Debug/"
-				ProgramDataBaseFileName=".\Debug/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				DebugInformationFormat="4"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="mkbv.exe"
-				LinkIncremental="2"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\..\"
-				GenerateDebugInformation="true"
-				ProgramDatabaseFile=".\Debug/mkbv.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Debug GPL tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Debug/mkbv.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				AdditionalIncludeDirectories="..\..\,..\..\..\common\src"
-				PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
-				BasicRuntimeChecks="0"
-				RuntimeLibrary="1"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				AssemblerListingLocation=".\Debug/"
-				ObjectFile=".\Debug/"
-				ProgramDataBaseFileName=".\Debug/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				DebugInformationFormat="4"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="mkbv.exe"
-				LinkIncremental="2"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\..\"
 				GenerateDebugInformation="true"
-				ProgramDatabaseFile=".\Debug/mkbv.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Release tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Release/mkbv.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\,..\..\..\common\src"
-				PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="mkbv.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				ProgramDatabaseFile=".\Release/mkbv.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Relase GPL tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Release/mkbv.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories="..\..\,..\..\..\common\src"
-				PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="mkbv.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				ProgramDatabaseFile=".\Release/mkbv.pdb"
 				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				TargetMachine="1"
 			/>
 			<Tool
 				Name="VCALinkTool"
@@ -671,30 +170,6 @@
 		<File
 			RelativePath=".\mkbv.c"
 			>
-			<FileConfiguration
-				Name="Debug|Win32"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-					AdditionalIncludeDirectories=""
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-					AdditionalIncludeDirectories=""
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug GPL tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCLCompilerTool"
-					AdditionalIncludeDirectories=""
-				/>
-			</FileConfiguration>
 		</File>
 	</Files>
 	<Globals>

Modified: vic/branches/mpeg4/tcl/tcl2cpp/tcl2cpp.2008.vcproj
==============================================================================
--- vic/branches/mpeg4/tcl/tcl2cpp/tcl2cpp.2008.vcproj	(original)
+++ vic/branches/mpeg4/tcl/tcl2cpp/tcl2cpp.2008.vcproj	Wed Jul 15 11:49:02 2009
@@ -3,8 +3,10 @@
 	ProjectType="Visual C++"
 	Version="9.00"
 	Name="tcl2cpp"
-	ProjectGUID="{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}"
-	TargetFrameworkVersion="131072"
+	ProjectGUID="{698A5E68-C79E-49DE-9EA8-7C455DEE3EB8}"
+	RootNamespace="tcl2cpp"
+	Keyword="Win32Proj"
+	TargetFrameworkVersion="196613"
 	>
 	<Platforms>
 		<Platform
@@ -16,13 +18,10 @@
 	<Configurations>
 		<Configuration
 			Name="Debug|Win32"
-			OutputDirectory=".\Debug"
-			IntermediateDirectory=".\Debug"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
+			IntermediateDirectory="$(ConfigurationName)"
 			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
+			CharacterSet="0"
 			>
 			<Tool
 				Name="VCPreBuildEventTool"
@@ -38,21 +37,16 @@
 			/>
 			<Tool
 				Name="VCMIDLTool"
-				TypeLibraryName=".\Debug/tcl2cpp.tlb"
 			/>
 			<Tool
 				Name="VCCLCompilerTool"
 				Optimization="0"
-				PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
+				PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
+				MinimalRebuild="true"
 				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
+				RuntimeLibrary="3"
 				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Debug/tcl2cpp.pch"
-				AssemblerListingLocation=".\Debug/"
-				ObjectFile=".\Debug/"
-				ProgramDataBaseFileName=".\Debug/"
 				WarningLevel="3"
-				SuppressStartupBanner="true"
 				DebugInformationFormat="4"
 			/>
 			<Tool
@@ -60,24 +54,16 @@
 			/>
 			<Tool
 				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
 			/>
 			<Tool
 				Name="VCPreLinkEventTool"
 			/>
 			<Tool
 				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="tcl2cpp.exe"
 				LinkIncremental="2"
-				SuppressStartupBanner="true"
 				GenerateDebugInformation="true"
-				ProgramDatabaseFile=".\Debug/tcl2cpp.pdb"
 				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
+				TargetMachine="1"
 			/>
 			<Tool
 				Name="VCALinkTool"
@@ -103,99 +89,11 @@
 		</Configuration>
 		<Configuration
 			Name="Release|Win32"
-			OutputDirectory=".\Release"
-			IntermediateDirectory=".\Release"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\Release/tcl2cpp.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Release/tcl2cpp.pch"
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="tcl2cpp.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				ProgramDatabaseFile=".\Release/tcl2cpp.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Release GPL|Win32"
-			OutputDirectory="$(ConfigurationName)"
+			OutputDirectory="$(SolutionDir)$(ConfigurationName)"
 			IntermediateDirectory="$(ConfigurationName)"
 			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
+			CharacterSet="1"
+			WholeProgramOptimization="1"
 			>
 			<Tool
 				Name="VCPreBuildEventTool"
@@ -211,391 +109,35 @@
 			/>
 			<Tool
 				Name="VCMIDLTool"
-				TypeLibraryName=".\Release/tcl2cpp.tlb"
 			/>
 			<Tool
 				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-				StringPooling="true"
-				RuntimeLibrary="0"
+				Optimization="2"
+				EnableIntrinsicFunctions="true"
+				PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
+				RuntimeLibrary="2"
 				EnableFunctionLevelLinking="true"
 				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Release/tcl2cpp.pch"
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
 				WarningLevel="3"
-				SuppressStartupBanner="true"
+				DebugInformationFormat="3"
 			/>
 			<Tool
 				Name="VCManagedResourceCompilerTool"
 			/>
 			<Tool
 				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
 			/>
 			<Tool
 				Name="VCPreLinkEventTool"
 			/>
 			<Tool
 				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="tcl2cpp.exe"
 				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				ProgramDatabaseFile=".\Release/tcl2cpp.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Debug tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\Debug/tcl2cpp.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Debug/tcl2cpp.pch"
-				AssemblerListingLocation=".\Debug/"
-				ObjectFile=".\Debug/"
-				ProgramDataBaseFileName=".\Debug/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				DebugInformationFormat="4"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="tcl2cpp.exe"
-				LinkIncremental="2"
-				SuppressStartupBanner="true"
-				GenerateDebugInformation="true"
-				ProgramDatabaseFile=".\Debug/tcl2cpp.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Debug GPL tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\Debug/tcl2cpp.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				Optimization="0"
-				PreprocessorDefinitions="WIN32,_DEBUG,_CONSOLE"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Debug/tcl2cpp.pch"
-				AssemblerListingLocation=".\Debug/"
-				ObjectFile=".\Debug/"
-				ProgramDataBaseFileName=".\Debug/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				DebugInformationFormat="4"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="tcl2cpp.exe"
-				LinkIncremental="2"
-				SuppressStartupBanner="true"
 				GenerateDebugInformation="true"
-				ProgramDatabaseFile=".\Debug/tcl2cpp.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Release tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\Release/tcl2cpp.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Release/tcl2cpp.pch"
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="tcl2cpp.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				ProgramDatabaseFile=".\Release/tcl2cpp.pdb"
-				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Relase GPL tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			CharacterSet="2"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				TypeLibraryName=".\Release/tcl2cpp.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				PreprocessorDefinitions="WIN32,NDEBUG,_CONSOLE"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Release/tcl2cpp.pch"
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="1033"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="odbc32.lib odbccp32.lib"
-				OutputFile="tcl2cpp.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				ProgramDatabaseFile=".\Release/tcl2cpp.pdb"
 				SubSystem="1"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				TargetMachine="1"
 			/>
 			<Tool
 				Name="VCALinkTool"

Added: vic/branches/mpeg4/tcl/ui-entry.tcl
==============================================================================
--- (empty file)
+++ vic/branches/mpeg4/tcl/ui-entry.tcl	Wed Jul 15 11:49:02 2009
@@ -0,0 +1,78 @@
+#
+# Copyright (c) 1993-1994 The Regents of the University of California.
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+# 3. Neither the names of the copyright holders nor the names of its
+#    contributors may be used to endorse or promote products derived from
+#    this software without specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS
+# IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+
+#
+# For any entry created, the global (array) entryTab($w:action)
+# contains the tcl procedure name to invoke when the entry is
+# updated (where $w is the wind path of the entry widget).
+# This proc is passed two args -- the window and the new value.
+# It should return 0 if the edit should be accepted,
+# and non-zero otherwise.  entryTab($w:value) should be
+# set to the initial value when the widget is created.
+#
+
+bind Entry <Enter> {
+	catch { 
+		global entryTab
+		if { $entryTab(%W:focus) } {
+			focus %W
+		}
+	}
+}
+bind Entry <Return> {
+	focus .
+	%W select clear
+	catch {
+		global entryTab
+		set entryTab(%W:focus) 0
+		set v [%W get]
+		if { [$entryTab(%W:action) %W $v] } {
+			%W delete 0 end
+			%W insert 0 $entryTab(%W:value)
+		} else {
+			set entryTab(%W:value) $v
+		}
+	}
+}
+bind Entry <Escape> {
+	focus .
+	%W select clear
+	%W delete 0 end
+	catch {
+		global entryTab
+		set entryTab(%W:focus) 0
+		%W insert 0 $entryTab(%W:value)
+	}
+}
+bind Entry <Control-g> [bind Entry <Escape>]
+
+bind Entry <Control-u> {
+	tkEntrySetCursor %W 0
+	%W delete insert end
+}

Modified: vic/branches/mpeg4/vic.2008.sln
==============================================================================
--- vic/branches/mpeg4/vic.2008.sln	(original)
+++ vic/branches/mpeg4/vic.2008.sln	Wed Jul 15 11:49:02 2009
@@ -1,369 +1,41 @@
+
 Microsoft Visual Studio Solution File, Format Version 10.00
-# Visual C++ Express 2008
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "histtolut", "render\histtolut\histtolut.2008.vcproj", "{E97385EE-09AD-414F-93CF-FBEDBF93C21E}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mkbv", "render\mkbv\mkbv.2008.vcproj", "{411F54B7-C71F-4E0F-A8C6-EE79F003E628}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mkcube", "render\mkcube\mkcube.2008.vcproj", "{75841900-55F8-43A6-A8CF-5B0F2760BD85}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mkhuff", "render\mkhuff\mkhuff.2008.vcproj", "{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ppmtolut", "render\ppmtolut\ppmtolut.2008.vcproj", "{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tcl2c", "..\tcl-8.0\win\tcl2c\tcl2c.2008.vcproj", "{490809D8-6220-4488-AAD6-9EB49282D55B}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tcl2cpp", "tcl\tcl2cpp\tcl2cpp.2008.vcproj", "{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tcllib", "..\tcl-8.0\win\tcllib.2008.vcproj", "{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}"
+# Visual Studio 2008
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vic", "vic.2008.vcproj", "{85E25224-4C6D-44B5-A88D-44C64834ECF4}"
 	ProjectSection(ProjectDependencies) = postProject
-		{490809D8-6220-4488-AAD6-9EB49282D55B} = {490809D8-6220-4488-AAD6-9EB49282D55B}
+		{698A5E68-C79E-49DE-9EA8-7C455DEE3EB8} = {698A5E68-C79E-49DE-9EA8-7C455DEE3EB8}
+		{273BED90-2525-4E7B-933E-4FC99F1A68B6} = {273BED90-2525-4E7B-933E-4FC99F1A68B6}
+		{33888FB9-7569-44CF-B055-6FA11DA67E53} = {33888FB9-7569-44CF-B055-6FA11DA67E53}
 	EndProjectSection
 EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tklib", "..\tk-8.0\win\tklib.2008.vcproj", "{995D710B-FAFD-44CE-902B-0A988BB521C8}"
-	ProjectSection(ProjectDependencies) = postProject
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F} = {CF5DA3AB-DA40-465E-B33D-662B99A3C34F}
-	EndProjectSection
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "..\common\src\common.2008.vcproj", "{273BED90-2525-4E7B-933E-4FC99F1A68B6}"
 EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "vic", "vic.2008.vcproj", "{DA6E3C9F-4270-49E5-8706-4E5762BE271B}"
-	ProjectSection(ProjectDependencies) = postProject
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85} = {75841900-55F8-43A6-A8CF-5B0F2760BD85}
-		{995D710B-FAFD-44CE-902B-0A988BB521C8} = {995D710B-FAFD-44CE-902B-0A988BB521C8}
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D} = {71134B12-D7FF-4E99-9C5D-9455CF8FC26D}
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB} = {2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE} = {E9B36171-A284-44B4-B4AF-F52DB37EA7FE}
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F} = {CF5DA3AB-DA40-465E-B33D-662B99A3C34F}
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628} = {411F54B7-C71F-4E0F-A8C6-EE79F003E628}
-		{490809D8-6220-4488-AAD6-9EB49282D55B} = {490809D8-6220-4488-AAD6-9EB49282D55B}
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E} = {E97385EE-09AD-414F-93CF-FBEDBF93C21E}
-	EndProjectSection
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "tcl2cpp", "tcl\tcl2cpp\tcl2cpp.2008.vcproj", "{698A5E68-C79E-49DE-9EA8-7C455DEE3EB8}"
 EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "..\common\src\common.2008.vcproj", "{F200EA6E-B37E-41E7-A6E6-5892C0609053}"
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "mkbv", "render\mkbv\mkbv.2008.vcproj", "{33888FB9-7569-44CF-B055-6FA11DA67E53}"
 EndProject
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
-		DDraw Debug GPL tcltk84|Win32 = DDraw Debug GPL tcltk84|Win32
-		DDraw Debug GPL|Win32 = DDraw Debug GPL|Win32
-		DDraw Debug tcltk84|Win32 = DDraw Debug tcltk84|Win32
-		DDraw Debug|Win32 = DDraw Debug|Win32
-		DDraw Relase GPL tcltk84|Win32 = DDraw Relase GPL tcltk84|Win32
-		DDraw Release GPL tcltk84|Win32 = DDraw Release GPL tcltk84|Win32
-		DDraw Release GPL|Win32 = DDraw Release GPL|Win32
-		DDraw Release tcltk84|Win32 = DDraw Release tcltk84|Win32
-		DDraw Release|Win32 = DDraw Release|Win32
-		Debug IPv6 MSR|Win32 = Debug IPv6 MSR|Win32
-		Debug IPv6 Musica|Win32 = Debug IPv6 Musica|Win32
-		Debug IPv6 Win2000|Win32 = Debug IPv6 Win2000|Win32
-		Debug IPv6|Win32 = Debug IPv6|Win32
 		Debug|Win32 = Debug|Win32
 		Release|Win32 = Release|Win32
 	EndGlobalSection
 	GlobalSection(ProjectConfigurationPlatforms) = postSolution
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Debug GPL tcltk84|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Debug tcltk84|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Debug|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Debug|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Release GPL tcltk84|Win32.Build.0 = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Release tcltk84|Win32.Build.0 = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.DDraw Release|Win32.Build.0 = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug IPv6 Win2000|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug|Win32.ActiveCfg = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Debug|Win32.Build.0 = Debug|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Release|Win32.ActiveCfg = Release|Win32
-		{E97385EE-09AD-414F-93CF-FBEDBF93C21E}.Release|Win32.Build.0 = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Debug GPL tcltk84|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Debug tcltk84|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Debug|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Debug|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Release GPL tcltk84|Win32.Build.0 = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Release tcltk84|Win32.Build.0 = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.DDraw Release|Win32.Build.0 = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug IPv6 Win2000|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug|Win32.ActiveCfg = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Debug|Win32.Build.0 = Debug|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Release|Win32.ActiveCfg = Release|Win32
-		{411F54B7-C71F-4E0F-A8C6-EE79F003E628}.Release|Win32.Build.0 = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Debug GPL tcltk84|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Debug tcltk84|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Debug|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Debug|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Release GPL tcltk84|Win32.Build.0 = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Release tcltk84|Win32.Build.0 = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.DDraw Release|Win32.Build.0 = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug IPv6 Win2000|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug|Win32.ActiveCfg = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Debug|Win32.Build.0 = Debug|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Release|Win32.ActiveCfg = Release|Win32
-		{75841900-55F8-43A6-A8CF-5B0F2760BD85}.Release|Win32.Build.0 = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Debug GPL tcltk84|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Debug tcltk84|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Debug|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Debug|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Release GPL tcltk84|Win32.Build.0 = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Release tcltk84|Win32.Build.0 = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.DDraw Release|Win32.Build.0 = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug IPv6 Win2000|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug|Win32.ActiveCfg = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Debug|Win32.Build.0 = Debug|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Release|Win32.ActiveCfg = Release|Win32
-		{E9B36171-A284-44B4-B4AF-F52DB37EA7FE}.Release|Win32.Build.0 = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Debug GPL tcltk84|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Debug tcltk84|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Debug|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Debug|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Release GPL tcltk84|Win32.Build.0 = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Release tcltk84|Win32.Build.0 = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.DDraw Release|Win32.Build.0 = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug IPv6 Win2000|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug|Win32.ActiveCfg = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Debug|Win32.Build.0 = Debug|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Release|Win32.ActiveCfg = Release|Win32
-		{71134B12-D7FF-4E99-9C5D-9455CF8FC26D}.Release|Win32.Build.0 = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Debug GPL tcltk84|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Debug tcltk84|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Debug|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Debug|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Release GPL tcltk84|Win32.Build.0 = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Release tcltk84|Win32.Build.0 = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.DDraw Release|Win32.Build.0 = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug IPv6 Win2000|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug|Win32.ActiveCfg = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Debug|Win32.Build.0 = Debug|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Release|Win32.ActiveCfg = Release|Win32
-		{490809D8-6220-4488-AAD6-9EB49282D55B}.Release|Win32.Build.0 = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Debug GPL tcltk84|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Debug tcltk84|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Debug|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Debug|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Release GPL tcltk84|Win32.Build.0 = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Release tcltk84|Win32.Build.0 = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.DDraw Release|Win32.Build.0 = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug IPv6 Win2000|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug|Win32.ActiveCfg = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Debug|Win32.Build.0 = Debug|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Release|Win32.ActiveCfg = Release|Win32
-		{2D8B664A-D193-4ED7-BCF8-5E217CE8DBFB}.Release|Win32.Build.0 = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Debug|Win32.ActiveCfg = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Debug|Win32.Build.0 = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.DDraw Release|Win32.Build.0 = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug|Win32.ActiveCfg = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Debug|Win32.Build.0 = Debug|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Release|Win32.ActiveCfg = Release|Win32
-		{CF5DA3AB-DA40-465E-B33D-662B99A3C34F}.Release|Win32.Build.0 = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Debug GPL|Win32.ActiveCfg = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Debug GPL|Win32.Build.0 = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Debug tcltk84|Win32.ActiveCfg = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Debug|Win32.ActiveCfg = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Debug|Win32.Build.0 = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Release GPL tcltk84|Win32.ActiveCfg = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Release GPL|Win32.ActiveCfg = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Release GPL|Win32.Build.0 = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Release tcltk84|Win32.ActiveCfg = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Release|Win32.ActiveCfg = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.DDraw Release|Win32.Build.0 = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug|Win32.ActiveCfg = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Debug|Win32.Build.0 = Debug|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Release|Win32.ActiveCfg = Release|Win32
-		{995D710B-FAFD-44CE-902B-0A988BB521C8}.Release|Win32.Build.0 = Release|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = DDraw Debug GPL tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Debug GPL tcltk84|Win32.Build.0 = DDraw Debug GPL tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Debug GPL|Win32.ActiveCfg = DDraw Debug GPL|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Debug GPL|Win32.Build.0 = DDraw Debug GPL|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Debug tcltk84|Win32.ActiveCfg = DDraw Debug tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Debug tcltk84|Win32.Build.0 = DDraw Debug tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Debug|Win32.ActiveCfg = DDraw Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Debug|Win32.Build.0 = DDraw Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Release GPL tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Release GPL tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Release GPL tcltk84|Win32.ActiveCfg = DDraw Release GPL tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Release GPL tcltk84|Win32.Build.0 = DDraw Release GPL tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Release GPL|Win32.ActiveCfg = DDraw Release GPL|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Release GPL|Win32.Build.0 = DDraw Release GPL|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Release tcltk84|Win32.ActiveCfg = DDraw Release tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Release tcltk84|Win32.Build.0 = DDraw Release tcltk84|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Release|Win32.ActiveCfg = DDraw Release|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.DDraw Release|Win32.Build.0 = DDraw Release|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug IPv6 MSR|Win32.ActiveCfg = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug IPv6 MSR|Win32.Build.0 = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug IPv6 Musica|Win32.ActiveCfg = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug IPv6 Musica|Win32.Build.0 = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug IPv6 Win2000|Win32.Build.0 = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug IPv6|Win32.ActiveCfg = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug IPv6|Win32.Build.0 = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug|Win32.ActiveCfg = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Debug|Win32.Build.0 = Debug|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Release|Win32.ActiveCfg = Release|Win32
-		{DA6E3C9F-4270-49E5-8706-4E5762BE271B}.Release|Win32.Build.0 = Release|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Debug GPL tcltk84|Win32.ActiveCfg = DDraw Debug GPL tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Debug GPL|Win32.ActiveCfg = DDraw Debug GPL tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Debug tcltk84|Win32.ActiveCfg = DDraw Debug tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Debug|Win32.ActiveCfg = DDraw Debug GPL tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Relase GPL tcltk84|Win32.ActiveCfg = DDraw Relase GPL tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Relase GPL tcltk84|Win32.Build.0 = DDraw Relase GPL tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Release GPL tcltk84|Win32.ActiveCfg = DDraw Release tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Release GPL|Win32.ActiveCfg = DDraw Release tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Release tcltk84|Win32.ActiveCfg = DDraw Release tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.DDraw Release|Win32.ActiveCfg = DDraw Release tcltk84|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.Debug IPv6 MSR|Win32.ActiveCfg = Debug IPv6 MSR|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.Debug IPv6 Musica|Win32.ActiveCfg = Debug IPv6 Musica|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.Debug IPv6 Win2000|Win32.ActiveCfg = Debug IPv6 Win2000|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.Debug IPv6|Win32.ActiveCfg = Debug IPv6 Win2000|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.Debug|Win32.ActiveCfg = Debug|Win32
-		{F200EA6E-B37E-41E7-A6E6-5892C0609053}.Release|Win32.ActiveCfg = Release|Win32
+		{85E25224-4C6D-44B5-A88D-44C64834ECF4}.Debug|Win32.ActiveCfg = Debug (GPL)|Win32
+		{85E25224-4C6D-44B5-A88D-44C64834ECF4}.Debug|Win32.Build.0 = Debug (GPL)|Win32
+		{85E25224-4C6D-44B5-A88D-44C64834ECF4}.Release|Win32.ActiveCfg = Release (nonGPL)|Win32
+		{85E25224-4C6D-44B5-A88D-44C64834ECF4}.Release|Win32.Build.0 = Release (nonGPL)|Win32
+		{273BED90-2525-4E7B-933E-4FC99F1A68B6}.Debug|Win32.ActiveCfg = Debug|Win32
+		{273BED90-2525-4E7B-933E-4FC99F1A68B6}.Debug|Win32.Build.0 = Debug|Win32
+		{273BED90-2525-4E7B-933E-4FC99F1A68B6}.Release|Win32.ActiveCfg = Release|Win32
+		{273BED90-2525-4E7B-933E-4FC99F1A68B6}.Release|Win32.Build.0 = Release|Win32
+		{698A5E68-C79E-49DE-9EA8-7C455DEE3EB8}.Debug|Win32.ActiveCfg = Debug|Win32
+		{698A5E68-C79E-49DE-9EA8-7C455DEE3EB8}.Debug|Win32.Build.0 = Debug|Win32
+		{698A5E68-C79E-49DE-9EA8-7C455DEE3EB8}.Release|Win32.ActiveCfg = Release|Win32
+		{698A5E68-C79E-49DE-9EA8-7C455DEE3EB8}.Release|Win32.Build.0 = Release|Win32
+		{33888FB9-7569-44CF-B055-6FA11DA67E53}.Debug|Win32.ActiveCfg = Debug|Win32
+		{33888FB9-7569-44CF-B055-6FA11DA67E53}.Debug|Win32.Build.0 = Debug|Win32
+		{33888FB9-7569-44CF-B055-6FA11DA67E53}.Release|Win32.ActiveCfg = Release|Win32
+		{33888FB9-7569-44CF-B055-6FA11DA67E53}.Release|Win32.Build.0 = Release|Win32
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE

Modified: vic/branches/mpeg4/vic.2008.vcproj
==============================================================================
--- vic/branches/mpeg4/vic.2008.vcproj	(original)
+++ vic/branches/mpeg4/vic.2008.vcproj	Wed Jul 15 11:49:02 2009
@@ -3,9 +3,10 @@
 	ProjectType="Visual C++"
 	Version="9.00"
 	Name="vic"
-	ProjectGUID="{DA6E3C9F-4270-49E5-8706-4E5762BE271B}"
+	ProjectGUID="{85E25224-4C6D-44B5-A88D-44C64834ECF4}"
 	RootNamespace="vic"
-	TargetFrameworkVersion="131072"
+	Keyword="Win32Proj"
+	TargetFrameworkVersion="196613"
 	>
 	<Platforms>
 		<Platform
@@ -13,22 +14,37 @@
 		/>
 	</Platforms>
 	<ToolFiles>
+		<ToolFile
+			RelativePath=".\win32\vc9\tcl2cpp.rules"
+		/>
+		<ToolFile
+			RelativePath=".\win32\vc9\yasm.rules"
+		/>
 	</ToolFiles>
 	<Configurations>
 		<Configuration
-			Name="Debug|Win32"
-			OutputDirectory=".\Debug"
-			IntermediateDirectory=".\Debug"
+			Name="Debug (nonGPL)|Win32"
+			OutputDirectory="$(SolutionDir)Debug"
+			IntermediateDirectory="Debug\NON_GPL"
 			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="0"
+			DeleteExtensionsOnClean="*.obj;*.ilk;*.tlb;*.tli;*.tlh;*.tmp;*.rsp;*.pgc;*.pgd;*.meta;$(TargetPath);$(OutDir)\*.c;$(OutDir)\*.cpp"
 			>
 			<Tool
 				Name="VCPreBuildEventTool"
 			/>
 			<Tool
+				Name="tcl2cpp"
+			/>
+			<Tool
 				Name="VCCustomBuildTool"
+				Description=""
+				CommandLine=""
+				AdditionalDependencies=""
+				Outputs=""
+			/>
+			<Tool
+				Name="YASM"
 			/>
 			<Tool
 				Name="VCXMLDataGeneratorTool"
@@ -38,54 +54,37 @@
 			/>
 			<Tool
 				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Debug/vic.tlb"
 			/>
 			<Tool
 				Name="VCCLCompilerTool"
-				AdditionalOptions="       "
 				Optimization="0"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;\Tcl\include\tcl8.4;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;codec\h263"
-				PreprocessorDefinitions="_WINDOWS,DEBUG,SASR,_DEBUG,_WIN95,WIN32,NEED_INET_PTON,ED_YBITS=4,SIGRET=void,SIGARGS=int,NLAYER=8"
-				RuntimeLibrary="1"
+				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;C:\Tcl\include\tcl8.5"
+				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;HAVE_IPv6;USE_DDRAW;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN32_WINNT=_WIN32_WINNT_WINXP"
+				MinimalRebuild="true"
+				BasicRuntimeChecks="3"
+				RuntimeLibrary="3"
 				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Debug/vic.pch"
-				AssemblerListingLocation=".\Debug/"
-				ObjectFile=".\Debug/"
-				ProgramDataBaseFileName=".\Debug/"
-				BrowseInformation="1"
 				WarningLevel="3"
-				SuppressStartupBanner="true"
 				DebugInformationFormat="4"
-				CompileAs="0"
 			/>
 			<Tool
 				Name="VCManagedResourceCompilerTool"
 			/>
 			<Tool
 				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="2057"
 			/>
 			<Tool
 				Name="VCPreLinkEventTool"
 			/>
 			<Tool
 				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tklib.lib tcllib.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib uclmm.lib iphlpapi.lib strmiids.lib quartz.lib"
-				OutputFile=".\Debug/vic.exe"
+				AdditionalDependencies="tcl85.lib tk85.lib uclmm.lib ws2_32.lib iphlpapi.lib vfw32.lib ddraw.lib dxguid.lib strmiids.lib quartz.lib"
 				LinkIncremental="2"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Debug;\tcl\lib;codec\tmndec;&quot;codec\tmn-x&quot;;C:\software\DXSDK\Lib"
+				AdditionalLibraryDirectories="C:\Tcl\lib;&quot;$(DXSDK_DIR)\Lib\x86&quot;;&quot;$(SolutionDir)Debug&quot;"
+				IgnoreDefaultLibraryNames=""
 				GenerateDebugInformation="true"
-				ProgramDatabaseFile=".\Debug/vic.pdb"
 				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
+				TargetMachine="1"
 			/>
 			<Tool
 				Name="VCALinkTool"
@@ -110,112 +109,25 @@
 			/>
 		</Configuration>
 		<Configuration
-			Name="Release|Win32"
-			OutputDirectory=".\Release"
-			IntermediateDirectory=".\Release"
+			Name="Release (nonGPL)|Win32"
+			OutputDirectory="$(SolutionDir)Release"
+			IntermediateDirectory="Release\NON_GPL"
 			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="0"
+			DeleteExtensionsOnClean="*.obj;*.ilk;*.tlb;*.tli;*.tlh;*.tmp;*.rsp;*.pgc;*.pgd;*.meta;*.obj;*.ilk;*.tlb;*.tli;*.tlh;*.tmp;*.rsp;*.pgc;*.pgd;*.meta;$(TargetPath);$(OutDir)\*.c;$(OutDir)\*.cpp"
+			WholeProgramOptimization="1"
 			>
 			<Tool
 				Name="VCPreBuildEventTool"
 			/>
 			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\Release/vic.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				InlineFunctionExpansion="1"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;&quot;..\tk-8.0\win&quot;;&quot;..\tk-8.0\generic&quot;;&quot;..\tk-8.0\xlib&quot;;&quot;..\tcl-8.0\win&quot;;&quot;..\tcl-8.0\generic&quot;;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;codec\h263"
-				PreprocessorDefinitions="NDEBUG,_WINDOWS,SASR,WIN32,HAVE_INET_PTON,ED_YBITS=4,SIGRET=void,SIGARGS=int,NLAYER=8"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=".\Release/vic.pch"
-				AssemblerListingLocation=".\Release/"
-				ObjectFile=".\Release/"
-				ProgramDataBaseFileName=".\Release/"
-				BrowseInformation="1"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="2057"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tklib.lib tcllib.lib uclmm.lib iphlpapi.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib"
-				OutputFile=".\Release/vic.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Release;&quot;..\tcl-8.0\win\Release&quot;;&quot;..\tk-8.0\win\Release&quot;;codec\tmndec;&quot;codec\tmn-x&quot;"
-				ProgramDatabaseFile=".\Release/vic.pdb"
-				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
+				Name="tcl2cpp"
 			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Release|Win32"
-			OutputDirectory=".\DDraw_Release"
-			IntermediateDirectory=".\DDraw_Release"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
 			<Tool
-				Name="VCPreBuildEventTool"
+				Name="VCCustomBuildTool"
 			/>
 			<Tool
-				Name="VCCustomBuildTool"
+				Name="YASM"
 			/>
 			<Tool
 				Name="VCXMLDataGeneratorTool"
@@ -225,49 +137,38 @@
 			/>
 			<Tool
 				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\vic___Win32_DDraw_Release/vic.tlb"
 			/>
 			<Tool
 				Name="VCCLCompilerTool"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;&quot;..\tk-8.0\win&quot;;&quot;..\tk-8.0\generic&quot;;&quot;..\tk-8.0\xlib&quot;;&quot;..\tcl-8.0\win&quot;;&quot;..\tcl-8.0\generic&quot;;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;codec\h263"
-				PreprocessorDefinitions="STATIC_BUILD;NDEBUG;HAVE_INET_PTON;_WINDOWS;SASR;WIN32;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;USE_DDRAW;WINVER=0x500"
-				StringPooling="true"
-				RuntimeLibrary="0"
+				Optimization="2"
+				EnableIntrinsicFunctions="true"
+				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;C:\Tcl\include\tcl8.5"
+				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;HAVE_IPv6;USE_DDRAW;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN32_WINNT=_WIN32_WINNT_WINXP"
+				RuntimeLibrary="2"
 				EnableFunctionLevelLinking="true"
 				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				BrowseInformation="1"
 				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
+				DebugInformationFormat="3"
 			/>
 			<Tool
 				Name="VCManagedResourceCompilerTool"
 			/>
 			<Tool
 				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="2057"
 			/>
 			<Tool
 				Name="VCPreLinkEventTool"
 			/>
 			<Tool
 				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tklib.lib tcllib.lib uclmm.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib ddraw.lib dxguid.lib iphlpapi.lib strmiids.lib quartz.lib"
-				OutputFile=".\DDraw_Release/vic.exe"
+				AdditionalDependencies="tcl85.lib tk85.lib uclmm.lib ws2_32.lib iphlpapi.lib vfw32.lib ddraw.lib dxguid.lib strmiids.lib quartz.lib"
 				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Release,..\tcl-8.0\win\Release,..\tk-8.0\win\Release,codec\tmndec,codec\tmn-x,\mssdk\lib,C:\Program Files\Intel\plsuite\lib\msvc,C:\Program Files\Intel\plsuite\lib"
-				GenerateMapFile="true"
+				AdditionalLibraryDirectories="C:\Tcl\lib;&quot;$(DXSDK_DIR)\Lib\x86&quot;;&quot;$(SolutionDir)Release&quot;"
+				GenerateDebugInformation="true"
 				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				TargetMachine="1"
 			/>
 			<Tool
 				Name="VCALinkTool"
@@ -292,111 +193,29 @@
 			/>
 		</Configuration>
 		<Configuration
-			Name="DDraw Debug GPL|Win32"
-			OutputDirectory=".\DDraw_Debug"
-			IntermediateDirectory=".\DDraw_Debug"
+			Name="Debug (GPL)|Win32"
+			OutputDirectory="$(SolutionDir)Debug"
+			IntermediateDirectory="Debug\GPL"
 			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="0"
+			DeleteExtensionsOnClean="*.obj;*.ilk;*.tlb;*.tli;*.tlh;*.tmp;*.rsp;*.pgc;*.pgd;*.meta;$(TargetPath);$(OutDir)\*.c;$(OutDir)\*.cpp"
 			>
 			<Tool
 				Name="VCPreBuildEventTool"
 			/>
 			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\vic___Win32_DDraw_Debug/vic.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				AdditionalOptions="       "
-				Optimization="0"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;&quot;..\tk-8.0\win&quot;;&quot;..\tk-8.0\generic&quot;;&quot;..\tk-8.0\xlib&quot;;&quot;..\tcl-8.0\win&quot;;&quot;..\tcl-8.0\generic&quot;;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;codec\h263;win32\include;&quot;C:\Program Files\Microsoft DirectX SDK (March 2008)\Include&quot;;$(NOINHERIT)"
-				PreprocessorDefinitions="STATIC_BUILD;DEBUG;_DEBUG;NEED_INET_PTON;_WINDOWS;SASR;WIN32;HAVE_SWSCALE;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;USE_DDRAW;WINVER=0x500, HAVE_STDLIB_H"
-				RuntimeLibrary="1"
-				StructMemberAlignment="5"
-				EnableEnhancedInstructionSet="0"
-				UsePrecompiledHeader="0"
-				BrowseInformation="1"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				DebugInformationFormat="4"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="2057"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tklib.lib tcllib.lib uclmm.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib ddraw.lib dxguid.lib iphlpapi.lib strmiids.lib quartz.lib avcodec-52.lib avutil-49.lib swscale-0.lib postproc-51.lib libx264.lib"
-				OutputFile=".\DDraw_Debug/vic.exe"
-				LinkIncremental="0"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Debug;&quot;..\tcl-8.0\win\Debug&quot;;&quot;..\tk-8.0\win\Debug&quot;;codec\tmndec;&quot;codec\tmn-x&quot;;\mssdk\lib;&quot;C:\Program Files\Intel\plsuite\lib\msvc&quot;;&quot;C:\Program Files\Intel\plsuite\lib&quot;;win32\lib;ffmpeg;x264"
-				IgnoreDefaultLibraryNames="libcd.lib"
-				GenerateDebugInformation="true"
-				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
+				Name="tcl2cpp"
 			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Debug|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
 			<Tool
-				Name="VCPreBuildEventTool"
+				Name="VCCustomBuildTool"
+				Description=""
+				CommandLine=""
+				AdditionalDependencies=""
+				Outputs=""
 			/>
 			<Tool
-				Name="VCCustomBuildTool"
+				Name="YASM"
+				CommandLine="yasm -Xvc -DPREFIX -f $(PlatformName) [AllOptions] [AdditionalOptions] [Inputs]"
 			/>
 			<Tool
 				Name="VCXMLDataGeneratorTool"
@@ -406,51 +225,37 @@
 			/>
 			<Tool
 				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\vic___Win32_DDraw_Debug/vic.tlb"
 			/>
 			<Tool
 				Name="VCCLCompilerTool"
-				AdditionalOptions="       "
 				Optimization="0"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;&quot;..\tk-8.0\win&quot;;&quot;..\tk-8.0\generic&quot;;&quot;..\tk-8.0\xlib&quot;;&quot;..\tcl-8.0\win&quot;;&quot;..\tcl-8.0\generic&quot;;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;codec\h263"
-				PreprocessorDefinitions="STATIC_BUILD;DEBUG;_DEBUG;_WIN95;NEED_INET_PTON;_WINDOWS;SASR;WIN32;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;USE_DDRAW;WINVER=0x500"
+				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;C:\Tcl\include\tcl8.5;C:\msys\1.0\local\include;C:\msys\local\include"
+				PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;HAVE_IPv6;HAVE_SWSCALE;HAVE_STDLIB_H;SASR;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN32_WINNT=_WIN32_WINNT_WINXP"
+				MinimalRebuild="true"
 				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
+				RuntimeLibrary="3"
 				UsePrecompiledHeader="0"
-				BrowseInformation="1"
 				WarningLevel="3"
-				SuppressStartupBanner="true"
 				DebugInformationFormat="4"
-				CompileAs="0"
 			/>
 			<Tool
 				Name="VCManagedResourceCompilerTool"
 			/>
 			<Tool
 				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="2057"
 			/>
 			<Tool
 				Name="VCPreLinkEventTool"
 			/>
 			<Tool
 				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tcllib.lib tklib.lib uclmm.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib ddraw.lib dxguid.lib iphlpapi.lib strmiids.lib quartz.lib"
-				OutputFile=".\DDraw_Debug/vic.exe"
+				AdditionalDependencies="tcl85.lib tk85.lib uclmm.lib ws2_32.lib iphlpapi.lib vfw32.lib ddraw.lib dxguid.lib strmiids.lib quartz.lib libgcc.a libmingwex.a libavcodec.a libavutil.a libpostproc.a libswscale.a libx264.a"
 				LinkIncremental="2"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Debug;&quot;..\tcl-8.0\win\Debug&quot;;&quot;..\tk-8.0\win\Debug&quot;;codec\tmndec;&quot;codec\tmn-x&quot;;\mssdk\lib;&quot;C:\Program Files\Intel\plsuite\lib\msvc&quot;;&quot;C:\Program Files\Intel\plsuite\lib&quot;"
-				IgnoreDefaultLibraryNames="LIBCMTD.lib"
+				AdditionalLibraryDirectories="C:\Tcl\lib;&quot;$(DXSDK_DIR)\Lib\x86&quot;;C:\msys\1.0\lib;C:\msys\lib;&quot;$(SolutionDir)Debug&quot;;C:\msys\1.0\local\lib;C:\msys\local\lib;C:\msys\1.0\lib\gcc\mingw32\4.4.0;C:\msys\1.0\lib\gcc\mingw32\4.2.0;C:\msys\lib\gcc\mingw32\4.4.0;C:\msys\lib\gcc\mingw32\4.2.0"
+				IgnoreDefaultLibraryNames=""
 				GenerateDebugInformation="true"
 				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
+				TargetMachine="1"
 			/>
 			<Tool
 				Name="VCALinkTool"
@@ -475,198 +280,26 @@
 			/>
 		</Configuration>
 		<Configuration
-			Name="DDraw Release GPL|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
+			Name="Release (GPL)|Win32"
+			OutputDirectory="$(SolutionDir)Release"
+			IntermediateDirectory="Release\GPL"
 			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
+			CharacterSet="0"
+			DeleteExtensionsOnClean="*.obj;*.ilk;*.tlb;*.tli;*.tlh;*.tmp;*.rsp;*.pgc;*.pgd;*.meta;*.obj;*.ilk;*.tlb;*.tli;*.tlh;*.tmp;*.rsp;*.pgc;*.pgd;*.meta;$(TargetPath);$(OutDir)\*.c;$(OutDir)\*.cpp"
+			WholeProgramOptimization="1"
 			>
 			<Tool
 				Name="VCPreBuildEventTool"
 			/>
 			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\vic___Win32_DDraw_Release/vic.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;&quot;..\tk-8.0\win&quot;;&quot;..\tk-8.0\generic&quot;;&quot;..\tk-8.0\xlib&quot;;&quot;..\tcl-8.0\win&quot;;&quot;..\tcl-8.0\generic&quot;;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;codec\h263;win32\ffmpeg"
-				PreprocessorDefinitions="STATIC_BUILD;NDEBUG;HAVE_INET_PTON;_WINDOWS;SASR;WIN32;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;USE_DDRAW;WINVER=0x500;HAVE_SWSCALE"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				BrowseInformation="1"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="2057"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tklib.lib tcllib.lib uclmm.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib ddraw.lib dxguid.lib iphlpapi.lib strmiids.lib quartz.lib avcodec-51.lib avutil-49.lib swscale-0.lib postproc-51.lib libx264.lib"
-				OutputFile=".\DDraw_Release/vic.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Release;&quot;..\tcl-8.0\win\Release&quot;;&quot;..\tk-8.0\win\Release&quot;;codec\tmndec;&quot;codec\tmn-x&quot;;\mssdk\lib;&quot;C:\Program Files\Intel\plsuite\lib\msvc&quot;;&quot;C:\Program Files\Intel\plsuite\lib&quot;;win32\lib"
-				GenerateMapFile="true"
-				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Debug tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
+				Name="tcl2cpp"
 			/>
 			<Tool
 				Name="VCCustomBuildTool"
 			/>
 			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\vic___Win32_DDraw_Debug/vic.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				AdditionalOptions="       "
-				Optimization="0"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;\Tcl\include\tcl8.4;codec\tmndec;codec\tmn-x;codec\jpeg;codec\p64;codec\h263"
-				PreprocessorDefinitions="DEBUG,_DEBUG,_WIN95,NEED_INET_PTON,_WINDOWS,SASR,WIN32,ED_YBITS=4,SIGRET=void,SIGARGS=int,NLAYER=8,USE_DDRAW,WINVER=0x500"
-				RuntimeLibrary="1"
-				UsePrecompiledHeader="0"
-				BrowseInformation="1"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				DebugInformationFormat="4"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="2057"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tcl84.lib tk84.lib uclmm.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib ddraw.lib dxguid.lib iphlpapi.lib strmiids.lib quartz.lib"
-				OutputFile=".\DDraw_Debug/vic.exe"
-				LinkIncremental="2"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Debug,\Tcl\lib,codec\tmndec,codec\tmn-x,\mssdk\lib,C:\Program Files\Intel\plsuite\lib\msvc,C:\Program Files\Intel\plsuite\lib"
-				IgnoreDefaultLibraryNames="LIBCMTD.lib"
-				GenerateDebugInformation="true"
-				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Debug GPL tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
+				Name="YASM"
+				CommandLine="yasm -Xvc -DPREFIX -f $(PlatformName) [AllOptions] [AdditionalOptions] [Inputs]"
 			/>
 			<Tool
 				Name="VCXMLDataGeneratorTool"
@@ -676,53 +309,38 @@
 			/>
 			<Tool
 				Name="VCMIDLTool"
-				PreprocessorDefinitions="_DEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\vic___Win32_DDraw_Debug/vic.tlb"
 			/>
 			<Tool
 				Name="VCCLCompilerTool"
-				AdditionalOptions="       "
-				Optimization="0"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;\Tcl\include\tcl8.4;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;codec\h263;win32\ffmpeg"
-				PreprocessorDefinitions="DEBUG;_DEBUG;NEED_INET_PTON;_WINDOWS;SASR;WIN32;HAVE_SWSCALE;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;USE_DDRAW;WINVER=0x500;HAVE_STDLIB_H"
-				BasicRuntimeChecks="3"
-				RuntimeLibrary="1"
-				StructMemberAlignment="5"
+				Optimization="2"
+				EnableIntrinsicFunctions="true"
+				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;C:\Tcl\include\tcl8.5;C:\msys\1.0\local\include;C:\msys\local\include"
+				PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;HAVE_IPv6;HAVE_SWSCALE;HAVE_STDLIB_H;SASR;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;_WIN32_WINNT=_WIN32_WINNT_WINXP"
+				RuntimeLibrary="2"
 				EnableFunctionLevelLinking="true"
 				UsePrecompiledHeader="0"
-				BrowseInformation="1"
 				WarningLevel="3"
-				SuppressStartupBanner="true"
-				DebugInformationFormat="4"
-				CompileAs="0"
+				DebugInformationFormat="3"
 			/>
 			<Tool
 				Name="VCManagedResourceCompilerTool"
 			/>
 			<Tool
 				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="_DEBUG"
-				Culture="2057"
 			/>
 			<Tool
 				Name="VCPreLinkEventTool"
 			/>
 			<Tool
 				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tcl84.lib tk84.lib uclmm.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib ddraw.lib dxguid.lib iphlpapi.lib strmiids.lib quartz.lib"
-				OutputFile=".\DDraw_Debug/vic.exe"
-				LinkIncremental="2"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Debug,\Tcl\lib,codec\tmndec,codec\tmn-x,\mssdk\lib,C:\Program Files\Intel\plsuite\lib\msvc,C:\Program Files\Intel\plsuite\lib"
-				IgnoreDefaultLibraryNames="LIBCMTD.lib"
+				AdditionalDependencies="tcl85.lib tk85.lib uclmm.lib ws2_32.lib iphlpapi.lib vfw32.lib strmiids.lib ddraw.lib quartz.lib libavcodec.a libavutil.a libpostproc.a libswscale.a libx264.a libgcc.a libmingwex.a"
+				LinkIncremental="1"
+				AdditionalLibraryDirectories="C:\Tcl\lib;&quot;$(DXSDK_DIR)\Lib\x86&quot;;C:\msys\1.0\lib;C:\msys\lib;&quot;$(SolutionDir)Debug&quot;;C:\msys\1.0\local\lib;C:\msys\local\lib;C:\msys\1.0\lib\gcc\mingw32\4.4.0;C:\msys\1.0\lib\gcc\mingw32\4.2.0;C:\msys\lib\gcc\mingw32\4.4.0;C:\msys\lib\gcc\mingw32\4.2.0"
 				GenerateDebugInformation="true"
 				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
+				OptimizeReferences="2"
+				EnableCOMDATFolding="2"
+				TargetMachine="1"
 			/>
 			<Tool
 				Name="VCALinkTool"
@@ -746,7088 +364,691 @@
 				Name="VCPostBuildEventTool"
 			/>
 		</Configuration>
-		<Configuration
-			Name="DDraw Release tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\vic___Win32_DDraw_Release/vic.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;\Tcl\include\tcl8.4;codec\tmndec;codec\tmn-x;codec\jpeg;codec\p64;codec\h263"
-				PreprocessorDefinitions="NDEBUG,HAVE_INET_PTON,_WINDOWS,SASR,WIN32,ED_YBITS=4,SIGRET=void,SIGARGS=int,NLAYER=8,USE_DDRAW,WINVER=0x500"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				BrowseInformation="1"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="2057"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tk84.lib tcl84.lib uclmm.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib ddraw.lib dxguid.lib iphlpapi.lib strmiids.lib quartz.lib"
-				OutputFile=".\DDraw_Release/vic.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Release,\Tcl\lib,codec\tmndec,codec\tmn-x,\mssdk\lib,C:\Program Files\Intel\plsuite\lib\msvc,C:\Program Files\Intel\plsuite\lib"
-				GenerateMapFile="true"
-				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-		<Configuration
-			Name="DDraw Release GPL tcltk84|Win32"
-			OutputDirectory="$(ConfigurationName)"
-			IntermediateDirectory="$(ConfigurationName)"
-			ConfigurationType="1"
-			InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops"
-			UseOfMFC="0"
-			ATLMinimizesCRunTimeLibraryUsage="false"
-			>
-			<Tool
-				Name="VCPreBuildEventTool"
-			/>
-			<Tool
-				Name="VCCustomBuildTool"
-			/>
-			<Tool
-				Name="VCXMLDataGeneratorTool"
-			/>
-			<Tool
-				Name="VCWebServiceProxyGeneratorTool"
-			/>
-			<Tool
-				Name="VCMIDLTool"
-				PreprocessorDefinitions="NDEBUG"
-				MkTypLibCompatible="true"
-				SuppressStartupBanner="true"
-				TargetEnvironment="1"
-				TypeLibraryName=".\vic___Win32_DDraw_Release/vic.tlb"
-			/>
-			<Tool
-				Name="VCCLCompilerTool"
-				AdditionalIncludeDirectories=".\;codec;render;rtp;net;win32;video;..\common\src;\Tcl\include\tcl8.4;codec\tmndec;&quot;codec\tmn-x&quot;;codec\jpeg;codec\p64;codec\h263;win32\ffmpeg"
-				PreprocessorDefinitions="STATIC_BUILD;NDEBUG;HAVE_INET_PTON;_WINDOWS;SASR;WIN32;ED_YBITS=4;SIGRET=void;SIGARGS=int;NLAYER=8;USE_DDRAW;WINVER=0x500;HAVE_SWSCALE"
-				StringPooling="true"
-				RuntimeLibrary="0"
-				EnableFunctionLevelLinking="true"
-				UsePrecompiledHeader="0"
-				PrecompiledHeaderFile=""
-				BrowseInformation="1"
-				WarningLevel="3"
-				SuppressStartupBanner="true"
-				CompileAs="0"
-			/>
-			<Tool
-				Name="VCManagedResourceCompilerTool"
-			/>
-			<Tool
-				Name="VCResourceCompilerTool"
-				PreprocessorDefinitions="NDEBUG"
-				Culture="2057"
-			/>
-			<Tool
-				Name="VCPreLinkEventTool"
-			/>
-			<Tool
-				Name="VCLinkerTool"
-				AdditionalOptions="/MACHINE:I386"
-				AdditionalDependencies="tk84.lib tcl84.lib uclmm.lib wsock32.lib Ws2_32.lib winmm.lib vfw32.lib ddraw.lib dxguid.lib iphlpapi.lib strmiids.lib quartz.lib avcodec-51.lib avutil-49.lib swscale-0.lib postproc-51.lib libx264.lib"
-				OutputFile=".\DDraw_Release/vic.exe"
-				LinkIncremental="1"
-				SuppressStartupBanner="true"
-				AdditionalLibraryDirectories="..\common\src\Release;\Tcl\lib;codec\tmndec;&quot;codec\tmn-x&quot;;\mssdk\lib;&quot;C:\Program Files\Intel\plsuite\lib\msvc&quot;;&quot;C:\Program Files\Intel\plsuite\lib&quot;;win32\lib"
-				GenerateMapFile="true"
-				SubSystem="2"
-				RandomizedBaseAddress="1"
-				DataExecutionPrevention="0"
-			/>
-			<Tool
-				Name="VCALinkTool"
-			/>
-			<Tool
-				Name="VCManifestTool"
-			/>
-			<Tool
-				Name="VCXDCMakeTool"
-			/>
-			<Tool
-				Name="VCBscMakeTool"
-			/>
-			<Tool
-				Name="VCFxCopTool"
-			/>
-			<Tool
-				Name="VCAppVerifierTool"
-			/>
-			<Tool
-				Name="VCPostBuildEventTool"
-			/>
-		</Configuration>
-	</Configurations>
-	<References>
-	</References>
-	<Files>
-		<Filter
-			Name="Tcl/Tk Scripts"
-			Filter=".tcl"
-			>
-			<File
-				RelativePath=".\tcl\accessgrid.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ag-pixrate.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\autoplace_ui.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\cf-confbus.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\cf-main.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\cf-network.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\cf-tm.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\cf-util.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\entry.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\tkerror.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-ctrlmenu.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-extout.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-grabber.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-help.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-main.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-relate.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-resource.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-srclist.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-stats.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-switcher.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-titlemaker.tcl"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-util.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-win32.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tcl\ui-windows.tcl"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="tcl\tcl2cpp\tcl2cpp 2 $(InputPath)  &gt; tcl\generated\$(InputName).cpp&#x0D;&#x0A;"
-						Outputs="tcl\generated\$(InputName).cpp"
-					/>
-				</FileConfiguration>
-			</File>
-			<Filter
-				Name="Tcl/Tk C++ generated files"
-				Filter=".cpp"
-				>
-				<File
-					RelativePath=".\tcl\generated\accessgrid.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ag-pixrate.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\autoplace_ui.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\cf-confbus.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\cf-main.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\cf-network.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\cf-tm.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\cf-util.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\entry.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\tkerror.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-ctrlmenu.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-extout.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-grabber.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-help.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-main.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-relate.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-resource.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-srclist.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-stats.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-switcher.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-titlemaker.cpp"
-					>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-util.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-win32.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\tcl\generated\ui-windows.cpp"
-					>
-					<FileConfiguration
-						Name="Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						>
-						<Tool
-							Name="VCCLCompilerTool"
-							AdditionalOptions="               "
-						/>
-					</FileConfiguration>
-				</File>
-			</Filter>
-		</Filter>
-		<Filter
-			Name="net"
-			>
-			<File
-				RelativePath=".\net\communicator.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\confbus.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\crypt-des.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\crypt-dull.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\crypt-rijndael.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\crypt.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\group-ipc.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\inet.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\inet6.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\mbus_engine.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\mbus_handler.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\net-addr.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\net-ip.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\net-ipv6.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\net.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\pktbuf.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\net\pkttbl.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<Filter
-				Name="Net Header files"
-				Filter=".h"
-				>
-				<File
-					RelativePath=".\net\crypt.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\group-ipc.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\inet.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\inet6.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\mbus_engine.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\mbus_handler.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\net-addr.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\net.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\pktbuf.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\pkttbl.h"
-					>
-				</File>
-				<File
-					RelativePath=".\net\rt.h"
-					>
-				</File>
-			</Filter>
-		</Filter>
-		<Filter
-			Name="codec"
-			>
-			<File
-				RelativePath=".\codec\bv.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\cellb_tables.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\compositor.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\databuffer.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\databuffer.h"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\dct.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-bvc.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-cellb.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-h261.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-h261as.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-h261v1.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-h264.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-jpeg.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-mpeg4.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-nv.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-pvh.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder-raw.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\decoder.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-bvc.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-cellb.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-h261.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-h261as.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-h264.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-jpeg.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-mpeg4.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-nv.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-pvh.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\encoder-raw.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\ffmpeg_codec.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\ffmpeg_codec.h"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\framer-jpeg.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\huffcode.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\jpeg\jpeg.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\p64\p64.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\p64\p64as.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\codec\packetbuffer.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\pvh-huff.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\rtp_h264_depayloader.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\transcoder-jpeg.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\codec\x264encoder.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<Filter
-				Name="codec Header Files"
-				>
-				<File
-					RelativePath=".\codec\dct.h"
-					>
-				</File>
-				<File
-					RelativePath=".\codec\decoder-jpeg.h"
-					>
-				</File>
-				<File
-					RelativePath=".\codec\decoder.h"
-					>
-				</File>
-				<File
-					RelativePath=".\codec\framer-h261.h"
-					>
-				</File>
-				<File
-					RelativePath=".\codec\packetbuffer.h"
-					>
-					<FileConfiguration
-						Name="DDraw Release|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Release tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\codec\pvh-huff.h"
-					>
-				</File>
-				<File
-					RelativePath=".\codec\pvh.h"
-					>
-				</File>
-				<File
-					RelativePath=".\codec\rtp_h264_depayloader.h"
-					>
-					<FileConfiguration
-						Name="DDraw Release|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Release tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-				</File>
-				<File
-					RelativePath=".\codec\x264encoder.h"
-					>
-					<FileConfiguration
-						Name="DDraw Release|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL|Win32"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Debug GPL tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-					<FileConfiguration
-						Name="DDraw Release tcltk84|Win32"
-						ExcludedFromBuild="true"
-						>
-						<Tool
-							Name="VCCustomBuildTool"
-						/>
-					</FileConfiguration>
-				</File>
-			</Filter>
-		</Filter>
-		<Filter
-			Name="render"
-			>
-			<File
-				RelativePath=".\render\cm0.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\render\cm1.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\render\color-dither.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\render\color-ed.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\render\color-gray.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\render\color-hi.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
+	</Configurations>
+	<References>
+		<ProjectReference
+			ReferencedProjectIdentifier="{273BED90-2525-4E7B-933E-4FC99F1A68B6}"
+			RelativePathToProject="..\common\src\common.2008.vcproj"
+		/>
+	</References>
+	<Files>
+		<Filter
+			Name="net"
+			>
+			<File
+				RelativePath=".\net\communicator.cpp"
+				>
 			</File>
 			<File
-				RelativePath=".\render\color-hist.cpp"
+				RelativePath=".\net\confbus.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\color-mono.cpp"
+				RelativePath=".\net\crypt-des.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\color-pseudo.cpp"
+				RelativePath=".\net\crypt-dull.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\color-quant.cpp"
+				RelativePath=".\net\crypt-rijndael.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\color-swscale.cpp"
+				RelativePath=".\net\crypt.cpp"
 				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\color-true.cpp"
+				RelativePath=".\net\group-ipc.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
-					ExcludedFromBuild="true"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\color-yuv.cpp"
+				RelativePath=".\net\inet.c"
+				>
+			</File>
+			<File
+				RelativePath=".\net\inet6.c"
+				>
+			</File>
+			<File
+				RelativePath=".\net\mbus_engine.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\color.cpp"
+				RelativePath=".\net\mbus_handler.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\ppm.cpp"
+				RelativePath=".\net\net-addr.cpp"
 				>
 			</File>
 			<File
-				RelativePath=".\render\renderer-window.cpp"
+				RelativePath=".\net\net-ip.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\renderer.cpp"
+				RelativePath=".\net\net-ipv6.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\rgb-converter.cpp"
+				RelativePath=".\net\net.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\render\vw.cpp"
+				RelativePath=".\net\pktbuf.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+			</File>
+			<File
+				RelativePath=".\net\pkttbl.cpp"
+				>
+			</File>
+			<Filter
+				Name="Net Header Files"
+				>
+				<File
+					RelativePath=".\net\crypt.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath=".\net\group-ipc.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath=".\net\inet.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath=".\net\inet6.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<Filter
-				Name="Render Header Files"
-				Filter=".h"
-				>
+				</File>
 				<File
-					RelativePath=".\render\color-hist.h"
+					RelativePath=".\net\mbus_engine.h"
 					>
 				</File>
 				<File
-					RelativePath=".\render\color-pseudo.h"
+					RelativePath=".\net\mbus_handler.h"
 					>
 				</File>
 				<File
-					RelativePath=".\render\color.h"
+					RelativePath=".\net\net-addr.h"
 					>
 				</File>
 				<File
-					RelativePath=".\render\renderer-window.h"
+					RelativePath=".\net\net.h"
 					>
 				</File>
 				<File
-					RelativePath=".\render\renderer.h"
+					RelativePath=".\net\pktbuf.h"
 					>
 				</File>
 				<File
-					RelativePath=".\render\rgb-converter.h"
+					RelativePath=".\net\pkttbl.h"
 					>
 				</File>
 				<File
-					RelativePath=".\render\vw.h"
+					RelativePath=".\net\rt.h"
 					>
 				</File>
 			</Filter>
 		</Filter>
 		<Filter
-			Name="rtp Source Session"
+			Name="codec"
 			>
 			<File
-				RelativePath=".\rtp\pktbuf-rtp.cpp"
+				RelativePath="&quot;$(OutDir)\bv.c&quot;"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\cellb_tables.c"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\compositor.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\databuffer.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\dct.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-bvc.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-cellb.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-dv.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-h261.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-h261as.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-h261v1.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-h264.cpp"
 				>
 				<FileConfiguration
-					Name="Debug|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-jpeg.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-mpeg4.cpp"
+				>
 				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug|Win32"
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-nv.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-pvh.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder-raw.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\decoder.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-bvc.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-cellb.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-h261.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-h261as.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-h264.cpp"
+				>
 				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\rtp\session.cpp"
+				RelativePath=".\codec\encoder-jpeg.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-mpeg4.cpp"
 				>
 				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug|Win32"
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-nv.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-pvh.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\encoder-raw.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\ffmpeg_codec.cpp"
+				>
 				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\rtp\source.cpp"
+				RelativePath=".\codec\framer-jpeg.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\huffcode.c"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\jpeg\jpeg.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\p64\p64.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\p64\p64as.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\packetbuffer.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\pvh-huff.c"
+				>
+			</File>
+			<File
+				RelativePath=".\codec\rtp_h264_depayloader.cpp"
 				>
 				<FileConfiguration
-					Name="Debug|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\codec\x264encoder.cpp"
+				>
 				<FileConfiguration
-					Name="DDraw Debug|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
+			</File>
+			<Filter
+				Name="Codec Header Files"
+				>
+				<File
+					RelativePath=".\codec\databuffer.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\dct.h"
+					>
+					<FileConfiguration
+						Name="Debug (nonGPL)|Win32"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+							Description="Generating &quot;bv.c&quot;."
+							CommandLine="&quot;$(OutDir)\mkbv&quot; &gt; &quot;$(OutDir)\bv.c&quot;&#x0D;&#x0A;"
+							AdditionalDependencies="&quot;$(OutDir)\mkbv.exe&quot;"
+							Outputs="&quot;$(OutDir)\bv.c&quot;"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release (nonGPL)|Win32"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+							Description="Generating &quot;bv.c&quot;."
+							CommandLine="&quot;$(OutDir)\mkbv&quot; &gt; &quot;$(OutDir)\bv.c&quot;&#x0D;&#x0A;"
+							AdditionalDependencies="&quot;$(OutDir)\mkbv.exe&quot;"
+							Outputs="&quot;$(OutDir)\bv.c&quot;"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Debug (GPL)|Win32"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+							Description="Generating &quot;bv.c&quot;."
+							CommandLine="&quot;$(OutDir)\mkbv&quot; &gt; &quot;$(OutDir)\bv.c&quot;&#x0D;&#x0A;"
+							AdditionalDependencies="&quot;$(OutDir)\mkbv.exe&quot;"
+							Outputs="&quot;$(OutDir)\bv.c&quot;"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release (GPL)|Win32"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+							Description="Generating &quot;bv.c&quot;."
+							CommandLine="&quot;$(OutDir)\mkbv&quot; &gt; &quot;$(OutDir)\bv.c&quot;&#x0D;&#x0A;"
+							AdditionalDependencies="&quot;$(OutDir)\mkbv.exe&quot;"
+							Outputs="&quot;$(OutDir)\bv.c&quot;"
+						/>
+					</FileConfiguration>
+				</File>
+				<File
+					RelativePath=".\codec\decoder-jpeg.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\decoder.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\ffmpeg_codec.h"
+					>
+					<FileConfiguration
+						Name="Debug (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+				</File>
+				<File
+					RelativePath=".\codec\framer-h261.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\tmndec\getvlc.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\jpeg\jpeg.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\p64\p64-huff.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\p64\p64.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\p64\p64as.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\packetbuffer.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\pvh-huff.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\pvh.h"
+					>
+				</File>
+				<File
+					RelativePath=".\codec\rtp_h264_depayloader.h"
+					>
+					<FileConfiguration
+						Name="Debug (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+				</File>
+				<File
+					RelativePath=".\codec\x264encoder.h"
+					>
+					<FileConfiguration
+						Name="Debug (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+				</File>
+			</Filter>
+		</Filter>
+		<Filter
+			Name="render"
+			>
+			<File
+				RelativePath=".\render\color-hi.cpp"
+				>
 				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+					Name="Debug (GPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\rtp\transmitter.cpp"
-				>
 				<FileConfiguration
-					Name="Debug|Win32"
+					Name="Release (GPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\render\color-swscale.cpp"
+				>
 				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug|Win32"
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\render\color-true.cpp"
+				>
 				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+					Name="Debug (GPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+					Name="Release (GPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 			</File>
+			<File
+				RelativePath=".\render\color.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\render\renderer-window.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\render\renderer.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\render\rgb-converter.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\render\vw.cpp"
+				>
+			</File>
+			<Filter
+				Name="Render Header Files"
+				>
+				<File
+					RelativePath=".\render\color.h"
+					>
+				</File>
+				<File
+					RelativePath=".\render\renderer-window.h"
+					>
+				</File>
+				<File
+					RelativePath=".\render\renderer.h"
+					>
+				</File>
+				<File
+					RelativePath=".\render\rgb-converter.h"
+					>
+				</File>
+				<File
+					RelativePath=".\render\vw.h"
+					>
+				</File>
+			</Filter>
+		</Filter>
+		<Filter
+			Name="rtp"
+			>
+			<File
+				RelativePath=".\rtp\pktbuf-rtp.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\rtp\session.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\rtp\source.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\rtp\transmitter.cpp"
+				>
+			</File>
 			<Filter
-				Name="rtp Header Files"
-				Filter=".h"
+				Name="RTP Header Files"
 				>
 				<File
 					RelativePath=".\rtp\ntp-time.h"
@@ -7856,1598 +1077,846 @@
 			</Filter>
 		</Filter>
 		<Filter
-			Name="win32"
+			Name="tcl"
 			>
 			<File
-				RelativePath=".\win32\win32.c"
+				RelativePath=".\tcl\accessgrid.tcl"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
+			</File>
+			<File
+				RelativePath=".\tcl\ag-pixrate.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\autoplace_ui.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\cf-confbus.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\cf-main.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\cf-network.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\cf-tm.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\cf-util.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-ctrlmenu.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-entry.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-extout.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-grabber.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-help.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-main.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-relate.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-resource.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-srclist.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-stats.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-switcher.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-titlemaker.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-util.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-vdd.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-win32.tcl"
+				>
+			</File>
+			<File
+				RelativePath=".\tcl\ui-windows.tcl"
+				>
+			</File>
+			<Filter
+				Name="Generated Source Files"
+				>
+				<File
+					RelativePath="$(OutDir)\accessgrid.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\ag-pixrate.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\autoplace_ui.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\cf-confbus.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\cf-main.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\win32\win32X.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\cf-network.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\cf-tm.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\cf-util.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\entry.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-ctrlmenu.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-extout.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-grabber.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-help.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-main.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-relate.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-resource.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-srclist.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-stats.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-switcher.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-titlemaker.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-util.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-vdd.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-win32.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\ui-windows.cpp"
+					>
+				</File>
+			</Filter>
 		</Filter>
 		<Filter
-			Name="Vic Common"
-			Filter=".c;.cpp"
+			Name="vic common"
 			>
 			<File
 				RelativePath=".\getopt.c"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
 				RelativePath=".\idlecallback.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
 				RelativePath=".\iohandler.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
 				RelativePath=".\main.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
 				RelativePath=".\md5c.c"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
 				RelativePath=".\media-timer.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+			</File>
+			<File
+				RelativePath=".\module.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\random.c"
+				>
+			</File>
+			<File
+				RelativePath=".\rate-variable.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\Tcl.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\Tcl2.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\timer.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\tkStripchart.c"
+				>
+			</File>
+			<File
+				RelativePath=".\tkWinColor.c"
+				>
+			</File>
+			<File
+				RelativePath="&quot;$(OutDir)\version.c&quot;"
+				>
+			</File>
+			<Filter
+				Name="VIC Common Header Files"
+				>
+				<File
+					RelativePath=".\config.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
+				</File>
+			</Filter>
+		</Filter>
+		<Filter
+			Name="video"
+			>
+			<File
+				RelativePath=".\video\assistor-list.cpp"
+				>
+			</File>
+			<File
+				RelativePath=".\video\crossbar.cpp"
+				>
 			</File>
 			<File
-				RelativePath=".\module.cpp"
+				RelativePath=".\video\deinterlace.cpp"
 				>
 				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
 					>
 					<Tool
 						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
 					/>
 				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\random.c"
+				RelativePath=".\video\device.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\rate-variable.cpp"
+				RelativePath=".\video\grabber-win32.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
 			</File>
 			<File
-				RelativePath=".\strtol.c"
+				RelativePath=".\video\grabber-win32DS.cpp"
 				>
 			</File>
 			<File
-				RelativePath=".\strtoul.c"
+				RelativePath=".\video\grabber.cpp"
 				>
 			</File>
 			<File
-				RelativePath=".\Tcl.cpp"
+				RelativePath=".\video\yuv_convert.cpp"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
+			</File>
+			<Filter
+				Name="Video Header Files"
+				>
+				<File
+					RelativePath=".\video\assistor-list.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath=".\video\crossbar.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath=".\video\deinterlace.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+					<FileConfiguration
+						Name="Debug (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+				</File>
+				<File
+					RelativePath=".\video\grabber-win32DS.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath=".\video\grabber.h"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
+				</File>
+				<File
+					RelativePath=".\video\yuv_convert.h"
+					>
+				</File>
+			</Filter>
+		</Filter>
+		<Filter
+			Name="win32"
+			>
+			<File
+				RelativePath=".\win32\dvp.h"
+				>
 			</File>
 			<File
-				RelativePath=".\Tcl2.cpp"
+				RelativePath=".\win32\win32.c"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
+			</File>
+			<File
+				RelativePath=".\win32\win32X.c"
+				>
+			</File>
+		</Filter>
+		<Filter
+			Name="ActiveTCL"
+			>
+			<Filter
+				Name="tcl"
+				>
+				<File
+					RelativePath="C:\Tcl\lib\tcl8.5\history.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tcl8.5\init.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tcl8.5\word.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+			</Filter>
+			<Filter
+				Name="tk"
+				>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\bgerror.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\console.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\timer.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\dialog.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\focus.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\listbox.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\menu.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\obsolete.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tkStripchart.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\optMenu.tcl"
+					>
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\palette.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\scrlbar.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\tearoff.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\text.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\tk.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\tkWinColor.c"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\unsupported.tcl"
+					>
+				</File>
+			</Filter>
+			<Filter
+				Name="ttk"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\altTheme.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\button.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\clamTheme.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\classicTheme.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\combobox.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\version.c"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\cursors.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\defaults.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\entry.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\fonts.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\menubutton.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<Filter
-				Name="Vic Common Headers"
-				Filter=".h"
-				>
+				</File>
 				<File
-					RelativePath=".\config.h"
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\notebook.tcl"
 					>
 				</File>
-			</Filter>
-		</Filter>
-		<Filter
-			Name="video"
-			>
-			<File
-				RelativePath=".\video\assistor-list.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\panedwindow.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\progress.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\scale.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\scrollbar.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\sizegrip.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\video\crossbar.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\video\deinterlace.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\treeview.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\ttk.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\utils.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\winTheme.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="C:\Tcl\lib\tk8.5\ttk\xpTheme.tcl"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\video\device.cpp"
+				</File>
+			</Filter>
+			<Filter
+				Name="Generated Source Files"
 				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				<File
+					RelativePath="$(OutDir)\altTheme.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\bgerror.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\button.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\clamTheme.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\classicTheme.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\video\grabber-win32.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\combobox.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\console.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\cursors.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\defaults.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\dialog.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\video\grabber-win32DS.cpp"
-				>
-			</File>
-			<File
-				RelativePath=".\video\grabber.cpp"
-				>
-				<FileConfiguration
-					Name="Debug|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\focus.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\fonts.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\history.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\init.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\listbox.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-						AdditionalOptions="               "
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\video\yuv_convert.cpp"
-				>
-			</File>
-			<Filter
-				Name="video Header Files"
-				Filter=".h"
-				>
+				</File>
 				<File
-					RelativePath=".\video\assistor-list.h"
+					RelativePath="$(OutDir)\menu.cpp"
 					>
 				</File>
 				<File
-					RelativePath=".\video\crossbar.h"
+					RelativePath="$(OutDir)\menubutton.cpp"
 					>
 				</File>
 				<File
-					RelativePath=".\video\device-input.h"
+					RelativePath="$(OutDir)\notebook.cpp"
 					>
 				</File>
 				<File
-					RelativePath=".\video\device-output.h"
+					RelativePath="$(OutDir)\obsolete.cpp"
 					>
 				</File>
 				<File
-					RelativePath=".\video\grabber-win32DS.h"
+					RelativePath="$(OutDir)\optMenu.cpp"
 					>
 				</File>
 				<File
-					RelativePath=".\video\grabber.h"
+					RelativePath="$(OutDir)\palette.cpp"
 					>
 				</File>
 				<File
-					RelativePath=".\video\yuv_convert.h"
+					RelativePath="$(OutDir)\panedwindow.cpp"
 					>
 				</File>
-			</Filter>
-		</Filter>
-		<Filter
-			Name="cpu"
-			>
-			<File
-				RelativePath=".\cpu\cpudetect.h"
-				>
-			</File>
-			<File
-				RelativePath=".\cpu\cpuid.cpp"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
+				<File
+					RelativePath="$(OutDir)\progress.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="$(OutDir)\scale.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="$(OutDir)\scrlbar.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="$(OutDir)\scrollbar.cpp"
 					>
-					<Tool
-						Name="VCCLCompilerTool"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\cpu\cpuid_win.asm"
-				>
-				<FileConfiguration
-					Name="DDraw Release|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="$(OutDir)\sizegrip.cpp"
 					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\tearoff.cpp"
 					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="yasm.exe -f win32 -DPREFIX -o &quot;$(IntDir)\$(InputName).obj&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
-						Outputs="$(IntDir)\$(InputName).obj"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="$(OutDir)\text.cpp"
 					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="nasmw.exe -f win32 -DPREFIX -o &quot;$(IntDir)\$(InputName).obj&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\tk.cpp"
 					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="nasmw.exe -f win32 -DPREFIX -o &quot;$(IntDir)\$(InputName).obj&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
-						Outputs="$(IntDir)\$(InputName).obj"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug tcltk84|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="$(OutDir)\treeview.cpp"
 					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="nasmw.exe -f win32 -DPREFIX -o &quot;$(IntDir)\$(InputName).obj&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Debug GPL tcltk84|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="$(OutDir)\ttk.cpp"
 					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="nasmw.exe -f win32 -DPREFIX -o &quot;$(IntDir)\$(InputName).obj&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
-						Outputs="$(IntDir)\$(InputName).obj"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release tcltk84|Win32"
-					ExcludedFromBuild="true"
+				</File>
+				<File
+					RelativePath="$(OutDir)\unsupported.cpp"
 					>
-					<Tool
-						Name="VCCustomBuildTool"
-					/>
-				</FileConfiguration>
-				<FileConfiguration
-					Name="DDraw Release GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\utils.cpp"
 					>
-					<Tool
-						Name="VCCustomBuildTool"
-						CommandLine="nasmw.exe -f win32 -DPREFIX -o &quot;$(IntDir)\$(InputName).obj&quot; &quot;$(InputPath)&quot;&#x0D;&#x0A;"
-						Outputs="$(IntDir)\$(InputName).obj"
-					/>
-				</FileConfiguration>
-			</File>
-			<File
-				RelativePath=".\cpu\cputable.h"
-				>
-			</File>
-		</Filter>
-		<File
-			RelativePath=".\cm170.ppm"
-			>
-			<FileConfiguration
-				Name="Debug|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug GPL|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release GPL|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug GPL tcltk84|Win32"
+				</File>
+				<File
+					RelativePath="$(OutDir)\winTheme.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\word.cpp"
+					>
+				</File>
+				<File
+					RelativePath="$(OutDir)\xpTheme.cpp"
+					>
+				</File>
+			</Filter>
+		</Filter>
+		<Filter
+			Name="cpu"
+			>
+			<File
+				RelativePath=".\cpu\cpuid.cpp"
 				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release tcltk84|Win32"
+				<FileConfiguration
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCLCompilerTool"
+					/>
+				</FileConfiguration>
+			</File>
+			<File
+				RelativePath=".\cpu\cpuid_win.asm"
 				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release GPL tcltk84|Win32"
+				<FileConfiguration
+					Name="Debug (nonGPL)|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+				<FileConfiguration
+					Name="Release (nonGPL)|Win32"
+					ExcludedFromBuild="true"
+					>
+					<Tool
+						Name="VCCustomBuildTool"
+					/>
+				</FileConfiguration>
+			</File>
+			<Filter
+				Name="CPU Header Files"
 				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkbv\mkbv &gt; codec\bv.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkbv\mkbv.exe;"
-					Outputs="codec\bv.c"
-				/>
-			</FileConfiguration>
-		</File>
+				<File
+					RelativePath=".\cpu\cpudetect.h"
+					>
+					<FileConfiguration
+						Name="Debug (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+				</File>
+				<File
+					RelativePath=".\cpu\cputable.h"
+					>
+					<FileConfiguration
+						Name="Debug (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+					<FileConfiguration
+						Name="Release (nonGPL)|Win32"
+						ExcludedFromBuild="true"
+						>
+						<Tool
+							Name="VCCustomBuildTool"
+						/>
+					</FileConfiguration>
+				</File>
+			</Filter>
+		</Filter>
 		<File
-			RelativePath=".\rgb-cube.ppm"
+			RelativePath=".\win32\build_install.txt"
 			>
-			<FileConfiguration
-				Name="Debug|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug GPL|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release GPL|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug GPL tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release GPL tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="render\mkcube\mkcube rgb &gt; $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n cube rgb-cube.ppm &gt; render\cm0.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -n jv_cube jv-cube-128.ppm &gt;&gt; render\cm0.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm0.c"
-				/>
-			</FileConfiguration>
 		</File>
 		<File
-			RelativePath="..\tk-8.0\win\tk.res"
+			RelativePath=".\LICENSE.txt"
 			>
 		</File>
 		<File
-			RelativePath=".\Version"
+			RelativePath=".\VERSION"
 			>
 			<FileConfiguration
-				Name="Debug|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;echo _$(ConfigurationName) &gt;&gt;  win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug GPL|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;echo _$(ConfigurationName) &gt;&gt;  win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;echo _$(ConfigurationName) &gt;&gt;  win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release GPL|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;echo _$(ConfigurationName) &gt;&gt;  win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;$(TargetPath)"
-					Outputs="version.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug tcltk84|Win32"
+				Name="Debug (nonGPL)|Win32"
 				>
 				<Tool
 					Name="VCCustomBuildTool"
 					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;echo _$(ConfigurationName) &gt;&gt;  win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
+					CommandLine="for /F %%v in (VERSION) do @echo const char version[] = &quot;%%v&quot;; &gt; &quot;$(OutDir)\version.c&quot;&#x0D;&#x0A;"
+					Outputs="&quot;$(OutDir)\version.c&quot;"
 				/>
 			</FileConfiguration>
 			<FileConfiguration
-				Name="DDraw Debug GPL tcltk84|Win32"
+				Name="Release (nonGPL)|Win32"
 				>
 				<Tool
 					Name="VCCustomBuildTool"
 					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;echo _$(ConfigurationName) &gt;&gt;  win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
+					CommandLine="for /F %%v in (VERSION) do @echo const char version[] = &quot;%%v&quot;; &gt; &quot;$(OutDir)\version.c&quot;&#x0D;&#x0A;"
+					Outputs="&quot;$(OutDir)\version.c&quot;"
 				/>
 			</FileConfiguration>
 			<FileConfiguration
-				Name="DDraw Release tcltk84|Win32"
+				Name="Debug (GPL)|Win32"
 				>
 				<Tool
 					Name="VCCustomBuildTool"
 					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;echo _$(ConfigurationName) &gt;&gt;  win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
+					CommandLine="for /F %%v in (VERSION) do @echo const char version[] = &quot;%%v&quot;; &gt; &quot;$(OutDir)\version.c&quot;&#x0D;&#x0A;"
+					Outputs="&quot;$(OutDir)\version.c&quot;"
 				/>
 			</FileConfiguration>
 			<FileConfiguration
-				Name="DDraw Release GPL tcltk84|Win32"
+				Name="Release (GPL)|Win32"
 				>
 				<Tool
 					Name="VCCustomBuildTool"
 					Description="Generating &quot;version.c&quot;."
-					CommandLine="copy win32\set.txt + VERSION win32\vergen.bat&#x0D;&#x0A;echo _$(ConfigurationName) &gt;&gt;  win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\null.txt win32\vergen.bat&#x0D;&#x0A;copy win32\vergen.bat + win32\echo.txt win32\vergen.bat&#x0D;&#x0A;win32\vergen.bat&#x0D;&#x0A;move win32\version.c version.c&#x0D;&#x0A;erase win32\version.c&#x0D;&#x0A;erase win32\vergen.bat&#x0D;&#x0A;"
-					AdditionalDependencies="win32\echo.txt;win32\set.txt;win32\null.txt;"
-					Outputs="version.c"
-				/>
-			</FileConfiguration>
-		</File>
-		<File
-			RelativePath=".\yuv-map.ppm"
-			>
-			<FileConfiguration
-				Name="Debug|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="Release|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug GPL|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release GPL|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Debug GPL tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\ppmtolut\ppmtolut.exe;render\mkcube\mkcube.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm1.c"
-				/>
-			</FileConfiguration>
-			<FileConfiguration
-				Name="DDraw Release GPL tcltk84|Win32"
-				>
-				<Tool
-					Name="VCCustomBuildTool"
-					CommandLine="set ED_YBITS=4&#x0D;&#x0A;render\mkcube\mkcube -Y $ED_YBITS -U 45 -V 45 yuv &gt;  $(InputPath)&#x0D;&#x0A;render\ppmtolut\ppmtolut -n quant cm170.ppm &gt; render\cm1.c&#x0D;&#x0A;render\ppmtolut\ppmtolut -Y $ED_YBITS -n ed -e yuv-map.ppm &gt;&gt; render\cm1.c&#x0D;&#x0A;"
-					AdditionalDependencies="render\mkcube\mkcube.exe;render\ppmtolut\ppmtolut.exe;"
-					Outputs="$(InputPath);render\cm1.c"
+					CommandLine="for /F %%v in (VERSION) do @echo const char version[] = &quot;%%v&quot;; &gt; &quot;$(OutDir)\version.c&quot;&#x0D;&#x0A;"
+					Outputs="&quot;$(OutDir)\version.c&quot;"
 				/>
 			</FileConfiguration>
 		</File>

Modified: vic/branches/mpeg4/video/grabber-win32.cpp
==============================================================================
--- vic/branches/mpeg4/video/grabber-win32.cpp	(original)
+++ vic/branches/mpeg4/video/grabber-win32.cpp	Wed Jul 15 11:49:02 2009
@@ -616,10 +616,6 @@
 #endif
 }
 
-extern "C" {
-extern char **__argv;
-}
-
 void VfwGrabber::start()
 {
 	debug_msg("VfwGrabber::start() thread=%x\n", GetCurrentThreadId());

Modified: vic/branches/mpeg4/video/grabber-win32DS.cpp
==============================================================================
--- vic/branches/mpeg4/video/grabber-win32DS.cpp	(original)
+++ vic/branches/mpeg4/video/grabber-win32DS.cpp	Wed Jul 15 11:49:02 2009
@@ -217,9 +217,9 @@
 
    if(!strcmp(cformat, "420"))
        cformat_ = CF_420;
-   if(!strcmp(cformat, "422"))
+   else if(!strcmp(cformat, "422"))
        cformat_ = CF_422;
-   if(!strcmp(cformat, "cif"))
+   else if(!strcmp(cformat, "cif"))
        cformat_ = CF_CIF;
 
    have_I420_ = false;
@@ -670,11 +670,6 @@
 
 void DirectShowGrabber::setsize() {
 
-   if (max_width_ > D1_BASE_WIDTH){
-       max_width_ = D1_BASE_WIDTH;
-       max_height_ = D1_BASE_HEIGHT;
-   }
-
    if (decimate_ == 1 && !have_DVSD_){  //i.e. Large
        width_ = max_width_;
        height_ = max_height_;
@@ -829,6 +824,7 @@
    AM_MEDIA_TYPE            *pmtConfig;
    int                      iCount;
    int                      iSize;
+   int                      preferred_max_width;
    VIDEO_STREAM_CONFIG_CAPS scc;
    HRESULT                  hr;
    VIDEOINFOHEADER          *pVih;
@@ -840,6 +836,7 @@
        return FALSE;
    }
 
+   preferred_max_width = 1024;
    max_width_ = 0;
    max_height_ = 0;
    min_width_ = 0xFFFF;
@@ -858,7 +855,7 @@
                    (pmtConfig->formattype == FORMAT_VideoInfo)         &&
                    (pmtConfig->cbFormat   >= sizeof (VIDEOINFOHEADER)) &&
                    (pmtConfig->pbFormat   != NULL)) {
-                       if(scc.MaxOutputSize.cx > max_width_){
+                       if(scc.MaxOutputSize.cx > max_width_ && scc.MaxOutputSize.cx <= preferred_max_width){
                            max_width_  = scc.MaxOutputSize.cx;
                            max_height_ =  scc.MaxOutputSize.cy;
                        }



More information about the Sumover-dev mailing list